BucketLogging.fromJson constructor
BucketLogging.fromJson(
- Map _json
Implementation
BucketLogging.fromJson(core.Map _json)
: this(
logBucket: _json.containsKey('logBucket')
? _json['logBucket'] as core.String
: null,
logObjectPrefix: _json.containsKey('logObjectPrefix')
? _json['logObjectPrefix'] as core.String
: null,
);