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