Calling helper methods in initialisers and dealloc is unsafe. Methods should only ever be called on fully initialised objects since methods can be overridden in subclasses.
The iOS FlutterViewController calls methods from both its initialisers and its dealloc. We should fix this, but it's probably also an indication that FlutterViewController is doing too much.
Calling helper methods in initialisers and dealloc is unsafe. Methods should only ever be called on fully initialised objects since methods can be overridden in subclasses.
The iOS FlutterViewController calls methods from both its initialisers and its dealloc. We should fix this, but it's probably also an indication that FlutterViewController is doing too much.