Files
flutterApp/lib/features/home/presentation/widgets/common/enum.dart

14 lines
302 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

enum WorkMode {
bow(0), // 作业模式:bow,值为0
custom(2); // 作业模式:custom,值为2
// 定义枚举的数值属性
final int value;
// 枚举构造函数(必须是const)
const WorkMode(this.value);
}
enum RobotMode { point, robot }
enum AreaMode { work, obstacle }