awardCurrency method

Future<void> awardCurrency(
  1. int amount
)

Implementation

Future<void> awardCurrency(int amount) async {
await _channel.invokeMethod('awardCurrency', {
'amount': amount,
});
}