LfpStore.fromJson constructor

LfpStore.fromJson(
  1. Map json_
)

Implementation

LfpStore.fromJson(core.Map json_)
  : this(
      gcidCategory:
          (json_['gcidCategory'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      matchingState: json_['matchingState'] as core.String?,
      matchingStateHint: json_['matchingStateHint'] as core.String?,
      name: json_['name'] as core.String?,
      phoneNumber: json_['phoneNumber'] as core.String?,
      placeId: json_['placeId'] as core.String?,
      storeAddress: json_['storeAddress'] as core.String?,
      storeCode: json_['storeCode'] as core.String?,
      storeName: json_['storeName'] as core.String?,
      targetAccount: json_['targetAccount'] as core.String?,
      websiteUri: json_['websiteUri'] as core.String?,
    );