BankScoreBand constructor

const BankScoreBand({
  1. required String label,
  2. required int upTo,
  3. required Color color,
})

Implementation

const BankScoreBand({
  required this.label,
  required this.upTo,
  required this.color,
});