ChannelToStoreLinkDetails.fromJson constructor

ChannelToStoreLinkDetails.fromJson(
  1. Map json_
)

Implementation

ChannelToStoreLinkDetails.fromJson(core.Map json_)
    : this(
        merchantId: json_.containsKey('merchantId')
            ? json_['merchantId'] as core.String
            : null,
        storeName: json_.containsKey('storeName')
            ? json_['storeName'] as core.String
            : null,
        storeUrl: json_.containsKey('storeUrl')
            ? json_['storeUrl'] as core.String
            : null,
      );