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