toJson method
Implementation
Map<String, dynamic> toJson() => {
"html_attributions": htmlAttributions == null
? []
: List<dynamic>.from(htmlAttributions!.map((x) => x)),
"result": result?.toJson(),
"status": status,
};