15
6
DO call super.initState() at the start of the initState method.
super.initState()
initState
@override void initState() { _init(); super.initState(); }
@override void initState() { super.initState(); _init(); }
To enable the proper_super_init_state rule, add proper_super_init_state under custom_lint > rules in your analysis_options.yaml file:
proper_super_init_state
analysis_options.yaml
custom_lint: rules: - proper_super_init_state