Error: Field ‘wLanguage’ cannot be nullable or have type ‘Null’, it must be `int`, `double`, `Pointer`, or a subtype of `Struct` or `Union`
I finally fix my problem by overriding these packages in my project’s pubspec.yaml dependency_overrides: package_info_plus: ^4.0.1 wakelock_windows: any win32: any or dependency_overrides: package_info_plus: any Overriding the package_info_plus to ^4.0.1 gave me the following error message because of my project dependencies. Because no versions of wakelock_windows match >0.2.1 <0.3.0 and wakelock_windows <0.2.1 depends on win32 ^2.0.0, … Read more