AuthenticationError.noDeviceLockError constructor

AuthenticationError.noDeviceLockError(
  1. Map<String, dynamic> json
)

An error that indicates that the device has no secure lock screen.

Params:

  • json: contains the source for instance creation.

Implementation

factory AuthenticationError.noDeviceLockError(Map<String, dynamic> json) {
  return AuthenticationNoDeviceLockError.fromJson(json);
}