GridSquare constructor

const GridSquare({
  1. required String color,
  2. required bool isFilled,
  3. required String categoryName,
  4. required int tokens,
  5. required int percentage,
  6. required double squareFullness,
})

Implementation

const GridSquare({
  required this.color,
  required this.isFilled,
  required this.categoryName,
  required this.tokens,
  required this.percentage,
  required this.squareFullness,
});