DeviceInformationCheckError.unknown constructor

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

Unknown device information check error, handling not categorized error cases.

Params:

  • json: contains the source for instance creation.

Implementation

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