isContextValid method
Implementation
bool isContextValid(DeviceConfigContext context) {
return context.id != null &&
context.label != null &&
context.targetIp != null &&
context.username != null &&
context.remoteHasSshConnection &&
context.appExecuterPath != null;
}