ArgumentNullException constructor
ArgumentNullException({
- String? message = 'Value cannot be null.',
- Exception? innerException,
- StackTrace? stackTrace,
- String? paramName,
Implementation
ArgumentNullException({
super.message = 'Value cannot be null.',
super.innerException,
super.stackTrace,
super.paramName,
});