checkReward method

Future<String?> checkReward()

Checks for rewards and returns the reward value and conversions.

This method returns a String? representing the reward, which will be null if there is no reward.

Throws an UnimplementedError if the platform-specific implementation has not been provided.

Implementation

Future<String?> checkReward() {
  throw UnimplementedError('checkReward() has not been implemented.');
}