GCS.fromJson constructor

GCS.fromJson(
  1. Map json_
)

Implementation

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