MissingDeviceInformationInMobileDevice constructor
Default constructor for MissingDeviceInformationInMobileDevice.
Params:
- dispatchTargetId: the identifier of the dispatch target that is missing in the mobile device.
- server: the server where the mismatch occurs.
Implementation
factory MissingDeviceInformationInMobileDevice({
required String dispatchTargetId,
required Server server,
}) {
return MissingDeviceInformationInMobileDeviceImpl(
dispatchTargetId: dispatchTargetId,
server: server,
);
}