'Flutter 3 : Warning: Operand of null-aware operation '!' has type 'SchedulerBinding' which excludes null [duplicate]
Solution 1:[1]
I believe that it suggests you to remove the '!' operand because the class method you have used now returns an Object of type "WidgetBinding" instead of "WidgetBinding?".
Solution 2:[2]
The issue is due to the presence of outdated packages. You can fix this by running flutter pub upgrade inside your app directory
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | roil |
| Solution 2 | Karunjith M |

