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