FileReference.fromJson constructor

FileReference.fromJson(
  1. Map _json
)

Implementation

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