mirror of
https://github.com/madari-media/madari-oss.git
synced 2026-03-11 21:26:56 +00:00
Some checks are pending
Build and Deploy / build_windows (push) Waiting to run
Build and Deploy / build_android (push) Waiting to run
Build and Deploy / build_android_tv (push) Waiting to run
Build and Deploy / build_ipa (push) Waiting to run
Build and Deploy / build_linux (push) Waiting to run
Build and Deploy / build_macos (push) Waiting to run
10 lines
223 B
Dart
10 lines
223 B
Dart
extension FirstWhereOrNullExtension<T> on Iterable<T> {
|
|
T? firstWhereOrNull(bool Function(T) test) {
|
|
for (var element in this) {
|
|
if (test(element)) {
|
|
return element;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
}
|