debitTransaction method
Implementation
Future<ElginResponse?> debitTransaction({required String value}) async {
final response = await channel.invokeMethod(
PaymentTypeCall.DEBIT.method,
{'value': value},
);
return ElginResponse.fromJson(response.toString());
}