Cell constructor

Cell({
  1. required String? id,
  2. required int? row,
  3. required int? col,
  4. required int? rowSpan,
  5. required int? colSpan,
  6. required String? label,
  7. required int? xmin,
  8. required int? ymin,
  9. required int? xmax,
  10. required int? ymax,
  11. required double? score,
  12. required String? text,
  13. required String? rowLabel,
  14. required String? verificationStatus,
  15. required String? status,
  16. required String? failedValidation,
  17. required String? labelId,
})

Implementation

Cell({
  required this.id,
  required this.row,
  required this.col,
  required this.rowSpan,
  required this.colSpan,
  required this.label,
  required this.xmin,
  required this.ymin,
  required this.xmax,
  required this.ymax,
  required this.score,
  required this.text,
  required this.rowLabel,
  required this.verificationStatus,
  required this.status,
  required this.failedValidation,
  required this.labelId,
});