GcsProfile.fromJson constructor

GcsProfile.fromJson(
  1. Map json_
)

Implementation

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