toJson method
Converts the object to a JSON representation.
Implementation
@override
Map<String, dynamic> toJson() {
return {
"owner": owner,
"offer_sequence": offerSequence,
"condition": condition,
"fulfillment": fulfillment,
...super.toJson()
};
}