getCode static method
Implementation
static Future<dynamic> getCode(String transactionUuid, int userId) async {
try {
final result = await _channel.invokeMethod('getCode', [
<String, dynamic>{
'transactionUuid': transactionUuid,
'userId': userId,
}
]);
return json.decode(result);
;
} on PlatformException catch (exception) {
return exception;
}
}