CustomRow constructor

CustomRow({
  1. required int index,
  2. required List<Widget> cells,
  3. TypeCustomRow typeCustomRow = TypeCustomRow.REPLACE,
  4. LocalKey? key,
})

Implementation

CustomRow(
    {required this.index,
    required this.cells,
    this.typeCustomRow = TypeCustomRow.REPLACE,
    this.key})
    : assert(index >= 0 || typeCustomRow != TypeCustomRow.REPLACE);