BucketOwner.fromJson constructor
BucketOwner.fromJson(
- Map _json
Implementation
BucketOwner.fromJson(core.Map _json)
: this(
entity: _json.containsKey('entity')
? _json['entity'] as core.String
: null,
entityId: _json.containsKey('entityId')
? _json['entityId'] as core.String
: null,
);