automationLevel property
String
get
automationLevel
Returns the level of AI automation in this mode.
Implementation
String get automationLevel {
return switch (this) {
ExecutionMode.automatic => 'Full automation',
ExecutionMode.manual => 'Planning only',
ExecutionMode.interactive => 'Semi-automatic',
};
}