ArgumentException constructor

ArgumentException({
  1. String? message = 'Value does not fall within the expected range',
  2. Exception? innerException,
  3. StackTrace? stackTrace,
  4. String? paramName,
})

Implementation

ArgumentException({
  super.message = 'Value does not fall within the expected range',
  super.innerException,
  super.stackTrace,
  String? paramName,
}) : _paramName = paramName;