toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  if (entityId != null) {
    json[r'EntityId'] = entityId;
  }
  if (cells != null) {
    json[r'Cells'] = cells;
  }
  return json;
}