NumberTooLargeIssue constructor

const NumberTooLargeIssue({
  1. required num currentValue,
  2. required num maxValue,
})

Implementation

const NumberTooLargeIssue({
  required this.currentValue,
  required this.maxValue,
});