transaction_update method
Implementation
Future<TransectionReturnModel?> transaction_update(
TransectionParameter model) async {
var rtn = await methodChannel.invokeMethod<String?>(
'transaction_update', model.toJson());
return TransectionReturnModel.fromJson(rtn ?? "{}");
}