DocumentReference.fromJson constructor
DocumentReference.fromJson(
- Map json_
Implementation
DocumentReference.fromJson(core.Map json_)
: this(
documentChunk: json_.containsKey('documentChunk')
? DocumentChunk.fromJson(
json_['documentChunk'] as core.Map<core.String, core.dynamic>,
)
: null,
);