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,
      );