DeviceInformationCheckError.fromJson constructor

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

Alternate constructor to create an DeviceInformationCheckError from json.

Params:

  • json: contains the source for instance creation.

Implementation

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