StoreLayout.fromJson constructor

StoreLayout.fromJson(
  1. Map json_
)

Implementation

StoreLayout.fromJson(core.Map json_)
    : this(
        homepageId: json_.containsKey('homepageId')
            ? json_['homepageId'] as core.String
            : null,
        storeLayoutType: json_.containsKey('storeLayoutType')
            ? json_['storeLayoutType'] as core.String
            : null,
      );