mangayomi/lib/utils/extensions/others.dart
kodjomoustapha 9d55733e97 Relocate extensions
-refactor
-also modify display widget in library draggabalble menu
2024-01-09 12:06:39 +01:00

5 lines
97 B
Dart

extension LetExtension<T> on T {
R let<R>(R Function(T) block) {
return block(this);
}
}