GoogleCloudStorage.fromJson constructor

GoogleCloudStorage.fromJson(
  1. Map json_
)

Implementation

GoogleCloudStorage.fromJson(core.Map json_)
    : this(
        gcsPath: json_.containsKey('gcsPath')
            ? json_['gcsPath'] as core.String
            : null,
      );