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