getInitialAppLink method

  1. @override
Future<Uri?> getInitialAppLink()

Gets the initial / first link returns Uri or null

Implementation

@override
Future<Uri?> getInitialAppLink() async {
  _initNotifier();

  return getInitialAppLinkString().then(
    (value) => value != null ? Uri.parse(value) : null,
  );
}