GenerationConfig has a option of "isInitializeCollections", if it is true, the result is ``` private List<Foo> fooList = new ArrayList<>(); ``` if it is false the result is ``` private List<Foo> fooList = null; ``` How can i get the result ``` private List<Foo> fooList; ```