Added subtitles to overhang meta actions

This commit is contained in:
2024-03-18 21:17:37 +01:00
parent b8e4dd4d07
commit 0770ba49eb
6 changed files with 23 additions and 5 deletions

View 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;
}
}