toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  if (this.title != null) {
    data['title'] = this.title!.toJson();
  }
  if (this.instructions != null) {
    data['instructions'] = this.instructions!.toJson();
  }
  return data;
}