updateTransaction static method

Future updateTransaction(
  1. String transactionUuid
)

Implementation

static Future<dynamic> updateTransaction(String transactionUuid) async {
  try {
    final result = await _channel.invokeMethod('updateTransaction');
  } on PlatformException catch (exception) {
    print(exception);
  }
}