DeviceInformationSyncError.fromJson constructor

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

Alternate constructor to create an DeviceInformationSyncError from json.

Params:

  • json: contains the source for instance creation.

Implementation

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