Row constructor

Row({
  1. int entityId,
  2. List<Cell> cells = const [],
})

Returns a new Row instance.

Implementation

Row({
  this.entityId,
  this.cells = const [],
});