toJson method

Map<String, dynamic> toJson()

Implementation

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