rememberDevice method

  1. @override
Future<void> rememberDevice()

Remembers the current device.

Implementation

@override
Future<void> rememberDevice() async {
  try {
    await _channel.invokeMethod<void>('rememberDevice');
  } on PlatformException catch (e) {
    throw transformDeviceException(e);
  }
}