
You don’t want a late
variable, you want a nullable one. If you need to check if something is initialized, you should be using a nullable variable instead and your code is already set up to check for null
just change
late MyData data;
to
MyData? data;
E.g.

change to

(Visited 2,989 times, 1 visits today)