DeviceInformationSyncUnknownError.fromJson constructor

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

Alternate constructor that creates a DeviceInformationSyncUnknownError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

factory DeviceInformationSyncUnknownError.fromJson(
  Map<String, dynamic> json,
) {
  return DeviceInformationSyncUnknownErrorImpl.fromJson(json);
}