toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  if (this.collection != null) {
    data['collection'] = this.collection!.map((v) => v.toJson()).toList();
  }
  if (this.describes != null) {
    data['describes'] = this.describes!.map((v) => v.toJson()).toList();
  }
  return data;
}