Error: The method 'unawaited' isn't defined for the class 'RateMyApp'

Solution 1:

You must add import 'dart:async'; to use unawaited and must set the minimum Dart SDK version to 2.15.0 or higher.

For older Dart versions, you can get unawaited from package:pedantic instead.