Skip to content

Commit 8a2f512

Browse files
chore: Format 2 different files correctly. (#8279)
1 parent 54f5555 commit 8a2f512

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

packages/firebase_dynamic_links/firebase_dynamic_links_platform_interface/lib/src/pending_dynamic_link_data.dart

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@ import 'pending_dynamic_link_data_ios.dart';
77

88
/// Provides data from received dynamic link.
99
class PendingDynamicLinkData {
10-
const PendingDynamicLinkData(
11-
{required this.link,
12-
this.android,
13-
this.ios,
14-
this.utmParameters = const {},
15-
}
16-
);
10+
const PendingDynamicLinkData({
11+
required this.link,
12+
this.android,
13+
this.ios,
14+
this.utmParameters = const {},
15+
});
1716

1817
/// Provides Android specific data from received dynamic link.
1918
///

packages/firebase_messaging/firebase_messaging/ios/Classes/FLTFirebaseMessagingPlugin.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,7 @@ - (void)messaging:(nonnull FIRMessaging *)messaging
195195
- (void)application_onDidFinishLaunchingNotification:(nonnull NSNotification *)notification {
196196
// Setup UIApplicationDelegate.
197197
#if TARGET_OS_OSX
198-
NSDictionary *remoteNotification =
199-
notification.userInfo[NSApplicationLaunchUserNotificationKey];
198+
NSDictionary *remoteNotification = notification.userInfo[NSApplicationLaunchUserNotificationKey];
200199
#else
201200
NSDictionary *remoteNotification =
202201
notification.userInfo[UIApplicationLaunchOptionsRemoteNotificationKey];

0 commit comments

Comments
 (0)