Cell constructor
Cell({
- required String? id,
- required int? row,
- required int? col,
- required int? rowSpan,
- required int? colSpan,
- required String? label,
- required int? xmin,
- required int? ymin,
- required int? xmax,
- required int? ymax,
- required double? score,
- required String? text,
- required String? rowLabel,
- required String? verificationStatus,
- required String? status,
- required String? failedValidation,
- 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,
});