ifNotNull<R> method
R?
ifNotNull<R>(
- R? then(
- T
Implementation
R? ifNotNull<R>(R? Function(T) then) => isNull ? null : then(this as T);
R? ifNotNull<R>(R? Function(T) then) => isNull ? null : then(this as T);