We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b894473 commit da38a9aCopy full SHA for da38a9a
test/model/binding.dart
@@ -313,12 +313,10 @@ class TestZulipBinding extends ZulipBinding {
313
_androidNotificationHostApi = null;
314
}
315
316
- FakeAndroidNotificationHostApi? _androidNotificationHostApi;
317
-
318
@override
319
- FakeAndroidNotificationHostApi get androidNotificationHost {
320
- return (_androidNotificationHostApi ??= FakeAndroidNotificationHostApi());
321
- }
+ FakeAndroidNotificationHostApi get androidNotificationHost =>
+ (_androidNotificationHostApi ??= FakeAndroidNotificationHostApi());
+ FakeAndroidNotificationHostApi? _androidNotificationHostApi;
322
323
/// The value that `ZulipBinding.instance.pickFiles()` should return.
324
///
0 commit comments