SmartTapMerchantData.fromJson constructor

SmartTapMerchantData.fromJson(
  1. Map json_
)

Implementation

SmartTapMerchantData.fromJson(core.Map json_)
    : this(
        authenticationKeys: json_.containsKey('authenticationKeys')
            ? (json_['authenticationKeys'] as core.List)
                .map((value) => AuthenticationKey.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        smartTapMerchantId: json_.containsKey('smartTapMerchantId')
            ? json_['smartTapMerchantId'] as core.String
            : null,
      );