DeviceInformationCheckError.forbidden constructor

DeviceInformationCheckError.forbidden(
  1. Map<String, dynamic> json
)

An error that indicates that the SDK could not access the credentials in the backend.

Params:

  • json: contains the source for instance creation.

Implementation

factory DeviceInformationCheckError.forbidden(
  Map<String, dynamic> json,
) {
  return DeviceInformationCheckForbidden.fromJson(json);
}