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