GridRow constructor

GridRow({
  1. required String id,
  2. required List<GridEntry> entries,
  3. required LinkMap links,
})

Creates a GridRow

Implementation

GridRow({
  required this.id,
  required this.entries,
  required this.links,
});