initializeCardTokenizer method

Future<bool> initializeCardTokenizer({
  1. required String customerMobile,
  2. required String customerEmail,
  3. String? customerProfileId,
  4. String? merchantRefNumber,
  5. Map<String, dynamic>? customParam,
})

Initialize Card Tokenizer.

Initialize the adding new card. Returns true if it initialized fine. Throws exception if not.

customerMobile sets the user phone number. customerEmail sets the user email. customerProfileId sets an optional profile id (Only iOS). merchantRefNumber sets an optional number consists of 16 random characters and numbers (only Android). customParam sets a map of custom data you want to receive back with result data after payment.

Implementation

Future<bool> initializeCardTokenizer({
  required String customerMobile,
  required String customerEmail,
  String? customerProfileId,
  String? merchantRefNumber,
  Map<String, dynamic>? customParam,
}) {
  throw UnimplementedError(
      'initializeCardTokenizer() has not been implemented.');
}