InitializationLockScreenHasChangedError.fromJson constructor

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

Alternate constructor that creates an InitializationLockScreenHasChangedError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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