AppTableIndexPath constructor

const AppTableIndexPath({
  1. required int row,
  2. required int column,
})

初始化 row 行索引 column 列索引

Implementation

const AppTableIndexPath({
  required this.row,
  required this.column,
});