InitializationError.hardwareError constructor

InitializationError.hardwareError(
  1. Map<String, dynamic> json
)

Secure hardware is not available on this device or an error occurred checking the hardware of the device.

Params:

  • json: contains the source for instance creation.

Implementation

factory InitializationError.hardwareError(Map<String, dynamic> json) {
  return InitializationHardwareError.fromJson(json);
}