MissingDeviceInformationInServer constructor
- {required IdUsernamePair idUsernamePair,
- 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,
);
}