openInOtpApp method

Future<void> openInOtpApp(
  1. String qrCodeUrl
)

Opens the specified QR Code URL in a password manager like iCloud Keychain.

Implementation

Future<void> openInOtpApp(
  String qrCodeUrl,
) async {
  await _instance.openInOtpApp(
    qrCodeUrl,
  );
}