nullmap<F> method
F?
nullmap<F>(
- F? f(
- T
Implementation
F? nullmap<F>(F? Function(T) f) {
if (this != null) {
return f(this!);
} else {
return null;
}
}