InvalidRadiusException constructor

const InvalidRadiusException(
  1. String message, {
  2. required double invalidValue,
  3. double? minValue,
  4. double? maxValue,
  5. String? code,
})

Implementation

const InvalidRadiusException(
  super.message, {
  required this.invalidValue,
  this.minValue,
  this.maxValue,
  super.code,
});