From 295c6dd24d0e67f4861ce70b44a6165c207c5969 Mon Sep 17 00:00:00 2001 From: Erdem Yerebasmaz Date: Sun, 16 Jun 2024 22:56:45 +0300 Subject: [PATCH] Ignore Firebase Dynamic Links deprecation warning Note: Firebase Dynamic Links is deprecated and the service will shut down on August 25, 2025. Please see our Dynamic Links Deprecation FAQ documentation > for guidance on alternative solutions and migration options: https://firebase.google.com/support/dynamic-links-faq. --- lib/services/deep_links.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/services/deep_links.dart b/lib/services/deep_links.dart index 9eb937e2b..b4fe97c67 100644 --- a/lib/services/deep_links.dart +++ b/lib/services/deep_links.dart @@ -1,3 +1,5 @@ +// ignore_for_file: deprecated_member_use + import 'dart:async'; import 'package:firebase_dynamic_links/firebase_dynamic_links.dart';