DeviceInformationMismatch.fromJson constructor

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

Alternate constructor that creates a DeviceInformationMismatch from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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