BucketWebsite.fromJson constructor

BucketWebsite.fromJson(
  1. Map json_
)

Implementation

BucketWebsite.fromJson(core.Map json_)
    : this(
        mainPageSuffix: json_.containsKey('mainPageSuffix')
            ? json_['mainPageSuffix'] as core.String
            : null,
        notFoundPage: json_.containsKey('notFoundPage')
            ? json_['notFoundPage'] as core.String
            : null,
      );