Null check operator used on a null value
Don’t downgrade Flutter Problem: This error occurs when you use a bang operator (!) on a nullable instance which wasn’t initialized. For example: String? string; // Nullable String void main() { var len = string!.length; // Runtime error: Null check operator used on a null value } Solutions: Open the logs and there must be … Read more