deduct method

Future<void> deduct(
  1. int amount
)

Implementation

Future<void> deduct(int amount) {
  return _channel.invokeMethod("deduct", <String, dynamic>{
    'amount': amount,
  });
}