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,
      );