toJson method

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

Implementation

@override
Map<String, dynamic> toJson() {
  final Map<String, dynamic> json = super.toJson();
  json['title_locution'] = titleLocution.toJson();
  json['completed_locution'] = completedLocution.toJson();
  json['not_surpassed_locution'] = notSurpassedLocution.toJson();
  json['title'] = title.toJson();
  json['completed_message'] = completedMessage.toJson();
  json['not_surpassed_message'] = notSurpassedMessage.toJson();
  return json;
}