SmartTapMerchantData.fromJson constructor

SmartTapMerchantData.fromJson(
  1. Map json_
)

Implementation

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