Added subtitles to overhang meta actions
This commit is contained in:
5
lib/extensions/renderNotNull.dart
Normal file
5
lib/extensions/renderNotNull.dart
Normal file
@ -0,0 +1,5 @@
|
||||
extension RenderNotNullExt<T> on T? {
|
||||
R? wrapNullable<R>(R Function(T data) defaultValueCallback) {
|
||||
return this != null ? defaultValueCallback(this as T) : null;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user