cellPostion.dart 278 B

1234567891011121314
  1. class CellPostion {
  2. int? row;
  3. int? column;
  4. int? rowSpan;
  5. int? columnSpan;
  6. CellPostion();
  7. CellPostion.fromJson(Map<String, dynamic> json) {
  8. row = json['Row'];
  9. column = json['Column'];
  10. rowSpan = json['RowSpan'];
  11. columnSpan = json['ColumnSpan'];
  12. }
  13. }