AuthenticationNoDeviceLockError.fromJson constructor

AuthenticationNoDeviceLockError.fromJson(
  1. Map<String, dynamic> json
)

Alternate constructor that creates an AuthenticationNoDeviceLockError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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