LocalizedStoreListings.fromJson constructor

LocalizedStoreListings.fromJson(
  1. Map json_
)

Implementation

LocalizedStoreListings.fromJson(core.Map json_)
  : this(
      defaultLanguageCode: json_['defaultLanguageCode'] as core.String?,
      localizedStoreListings: (json_['localizedStoreListings'] as core.List?)
          ?.map(
            (value) => LocalizedStoreListing.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );