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