DeviceInformationChangeNotFound.fromJson constructor Null safety

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

Alternate constructor that creates a DeviceInformationChangeNotFound from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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