Score constructor

Score({
  1. required AbstractPoint basePoint,
  2. bool? isHost,
  3. bool? isPicked,
  4. int? consecutivelyCount,
})

Implementation

Score({
  required this.basePoint,
  this.isHost,
  this.isPicked,
  this.consecutivelyCount,
});