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