MissingDeviceInformationInMobileDevice constructor

MissingDeviceInformationInMobileDevice(
  1. {required String dispatchTargetId,
  2. required Server server}
)

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,
  );
}