showTokenProcessingError static method

Future showTokenProcessingError(
  1. String message
)

Keep displaying card form, and show message as error message.

Implementation

static Future showTokenProcessingError(String message) async {
  final params = <String, dynamic>{
    'message': message,
  };
  await channel.invokeMethod('showTokenProcessingError', params);
}