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 86be0e8 commit 57a83ebCopy full SHA for 57a83eb
test/model/binding.dart
@@ -281,12 +281,10 @@ class TestZulipBinding extends ZulipBinding {
281
_androidNotificationHostApi = null;
282
}
283
284
- FakeAndroidNotificationHostApi? _androidNotificationHostApi;
285
-
286
@override
287
- FakeAndroidNotificationHostApi get androidNotificationHost {
288
- return (_androidNotificationHostApi ??= FakeAndroidNotificationHostApi());
289
- }
+ FakeAndroidNotificationHostApi get androidNotificationHost =>
+ (_androidNotificationHostApi ??= FakeAndroidNotificationHostApi());
+ FakeAndroidNotificationHostApi? _androidNotificationHostApi;
290
291
/// The value that `ZulipBinding.instance.pickFiles()` should return.
292
///
0 commit comments