SiteConfig.fromJson constructor
SiteConfig.fromJson(
- 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,
);