SiteConfig.fromJson constructor

SiteConfig.fromJson(
  1. Map json_
)

Implementation

SiteConfig.fromJson(core.Map json_)
    : this(
        cloudLoggingEnabled: json_.containsKey('cloudLoggingEnabled')
            ? json_['cloudLoggingEnabled'] as core.bool
            : null,
        maxVersions: json_.containsKey('maxVersions')
            ? json_['maxVersions'] as core.String
            : null,
      );