GcsProfile.fromJson constructor

GcsProfile.fromJson(
  1. Map json_
)

Implementation

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