MissingDeviceInformationInServer constructor

MissingDeviceInformationInServer(
  1. {required IdUsernamePair idUsernamePair,
  2. required Server server}
)

Default constructor for MissingDeviceInformationInServer.

Params:

  • idUsernamePair: the IdUsernamePair that is missing in the server.
  • server: the server where the mismatch occurs.

Implementation

factory MissingDeviceInformationInServer({
  required IdUsernamePair idUsernamePair,
  required Server server,
}) {
  return MissingDeviceInformationInServerImpl(
    idUsernamePair: idUsernamePair,
    server: server,
  );
}