coerceListOrNull<T> static method
Coerce a List from D4rt, returning null if arg is null.
Implementation
static List<T>? coerceListOrNull<T>(Object? arg, String paramName) {
if (arg == null) return null;
return coerceList<T>(arg, paramName);
}