Turn off Null Safety for previous Flutter Project

You can specify add this code at the top of each dart file on your project to disable null checks for any files with flutter sdk version 2.2 or latest.
// @dart=2.9

Source :
https://stackoverflow.com/questions/65302065/turn-off-null-safety-for-previous-flutter-project

Comments