isContextValid method

bool isContextValid(
  1. DeviceConfigContext context
)

Implementation

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