enum StepType { TYPE, CARTONS, SIZE, PACKAGES, CARGOS, SUBMIT } class LocalStep { String lable; StepType stepType; LocalStep({required this.lable, required this.stepType}); }