getAllTransactions method

Future<bool> getAllTransactions()

Function to get all transactions

Implementation

Future<bool> getAllTransactions() async {
  return await channel.invokeMethod(PaymentTypeCall.getAllTransactions.method);
}