startStoreCard static method

Future startStoreCard(
  1. String customerId
)

Implementation

static Future startStoreCard(String customerId) async {
  var params = <String, dynamic>{
    'customerId': customerId,
  };
  try {
    var cardObject = await _channel.invokeMethod('startStoreCard', params);
    return _standardSerializers.deserializeWith(Card.serializer, cardObject);
  } on PlatformException catch (ex) {
    throw ReaderSdkException(ex.code, ex.message, ex.details['debugCode'],
        ex.details['debugMessage']);
  }
}