UniversalIdResultField.fromJson constructor
Implementation
factory UniversalIdResultField.fromJson(Map<String, dynamic> json) =>
UniversalIdResultField(
dateValue: json["dateValue"] == null
? null
: DateValue.fromJson(json["dateValue"]),
textValues: json["textValues"] == null
? null
: TextValues.fromJson(json["textValues"]),
);