open method

Future<bool> open([
  1. AppInfo? info
])

Launches the application store for app info and returns true if successful.

If info is omitted the store is launched for the first application found in apps.

Implementation

Future<bool> open([final AppInfo? info]) {
  final AppInfo app = info ?? apps.first;
  return SolanaWalletAdapterPlatform.instance.openUri(uri(app), WindowTarget.blank);
}