FileReference.fromJson constructor

FileReference.fromJson(
  1. Map _json
)

Implementation

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