rememberDevice method

Future<void> rememberDevice()

Remembers the current device.

Implementation

Future<void> rememberDevice() {
  return plugins.length == 1
      ? plugins[0].rememberDevice()
      : throw _pluginNotAddedException('Auth');
}