GcsProfile.fromJson constructor
GcsProfile.fromJson(
- 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,
);