mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 23:06:21 +01:00
7 lines
110 B
Dart
7 lines
110 B
Dart
|
extension ObjectExtension<T> on T {
|
||
|
T apply(void Function(T obj) fn) {
|
||
|
fn(this);
|
||
|
return this;
|
||
|
}
|
||
|
}
|