File tree 3 files changed +6
-6
lines changed
firebase_auth_platform_interface
firebase_auth_web/lib/src/utils
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -44,9 +44,9 @@ class ActionCodeSettings {
44
44
45
45
/// Sets an optional Dynamic Link domain.
46
46
@Deprecated (
47
- 'Firebase Dynamic Links is deprecated and will be shut down as early as August * 2025. '
48
- 'Instead, use ActionCodeSettings.linkDomain to set a a custom domain. '
49
- 'Learn more at: https://firebase.google.com/support/dynamic-links-faq' )
47
+ 'Firebase Dynamic Links is deprecated and will be shut down as early as August * 2025. '
48
+ 'Instead, use ActionCodeSettings.linkDomain to set a a custom domain. '
49
+ 'Learn more at: https://firebase.google.com/support/dynamic-links-faq' )
50
50
final String ? dynamicLinkDomain;
51
51
52
52
/// The default is false. When true, the action code link will be sent
Original file line number Diff line number Diff line change @@ -36,8 +36,7 @@ void main() {
36
36
// ignore: deprecated_member_use_from_same_package
37
37
expect (actionCodeSettings.dynamicLinkDomain,
38
38
equals (kMockDynamicLinkDomain));
39
- expect (actionCodeSettings.linkDomain,
40
- equals (kMockLinkDomain));
39
+ expect (actionCodeSettings.linkDomain, equals (kMockLinkDomain));
41
40
expect (
42
41
actionCodeSettings.handleCodeInApp, equals (kMockHandleCodeInApp));
43
42
expect (actionCodeSettings.androidPackageName, equals (kMockPackageName));
Original file line number Diff line number Diff line change @@ -223,11 +223,12 @@ auth_interop.ActionCodeSettings? convertPlatformActionCodeSettings(
223
223
Map <String , dynamic > actionCodeSettingsMap = actionCodeSettings.asMap ();
224
224
225
225
auth_interop.ActionCodeSettings webActionCodeSettings;
226
-
226
+ // ignore: deprecated_member_use
227
227
if (actionCodeSettings.dynamicLinkDomain != null ) {
228
228
webActionCodeSettings = auth_interop.ActionCodeSettings (
229
229
url: actionCodeSettings.url.toJS,
230
230
handleCodeInApp: actionCodeSettings.handleCodeInApp.toJS,
231
+ // ignore: deprecated_member_use
231
232
dynamicLinkDomain: actionCodeSettings.dynamicLinkDomain? .toJS,
232
233
);
233
234
} else {
You can’t perform that action at this time.
0 commit comments