throwIfNull static method
Throws an ArgumentNullException if argument is null.
Implementation
static void throwIfNull(Object? argument, String? paramName) {
if (argument == null) {
_throw(paramName);
}
}
Throws an ArgumentNullException if argument is null.
static void throwIfNull(Object? argument, String? paramName) {
if (argument == null) {
_throw(paramName);
}
}