You may prefer to just ignore the warning, for backwards compatibility with flutter <= 2.10.
You could delay merging until flutter 2.13(?) becomes stable, or else publish a prerelease (say v0.7.2-0) that specifies a minimum flutter version in pubspec.yaml:
environment:
sdk: ">=2.17.0-0 <3.0.0"
flutter: ">=2.12.0-4.0.pre"
# seems to be the first time flutter/flutter@ab89ce285 exists
Closes #122.
You may prefer to just ignore the warning, for backwards compatibility with flutter <= 2.10.
You could delay merging until flutter 2.13(?) becomes stable, or else publish a prerelease (say
v0.7.2-0
) that specifies a minimum flutter version in pubspec.yaml: