StorageBucketInfo.fromJson constructor

StorageBucketInfo.fromJson(
  1. Map json_
)

Implementation

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