openWallet function

Future<void> openWallet()

Opens the wallet.

Implementation

Future<void> openWallet() async {
  try {
    await _platform.openWallet();
  } catch (error, stackTrace) {
    Error.throwWithStackTrace(error, stackTrace);
  }
}