DeviceNameMismatch constructor
Default constructor for DeviceNameMismatch.
Params:
- nameInServer: the name of the device in the server.
- nameInMobileDevice: the name of the device in the mobile application.
- server: the server where the mismatch occurs.
Implementation
factory DeviceNameMismatch({
required String nameInServer,
required String nameInMobileDevice,
required Server server,
}) {
return DeviceNameMismatchImpl(
nameInServer: nameInServer,
nameInMobileDevice: nameInMobileDevice,
server: server,
);
}