BucketObjectRetention.fromJson constructor

BucketObjectRetention.fromJson(
  1. Map json_
)

Implementation

BucketObjectRetention.fromJson(core.Map json_)
    : this(
        mode: json_.containsKey('mode') ? json_['mode'] as core.String : null,
      );