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,
      );