GcsProfile.fromJson constructor

GcsProfile.fromJson(
  1. Map json_
)

Implementation

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