toJson method

  1. @override
Map<String, dynamic> toJson()
override

Converts the object to a JSON representation.

Implementation

@override
Map<String, dynamic> toJson() {
  final json = super.toJson();
  json["destination"] = destination;
  json["destination_tag"] = destinationTag;
  return json;
}