toJson method

Map<String, dynamic> toJson()

Implementation

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