Tente adicionar uma cláusula de caixa para a constante ausente ou adicionar uma cláusula padrão.DartMissing_enum_Constant_in_Switch.

// you can just use a default value, or you can add the other values inside the enum:
switch(value) {
  case Enum1: // ....
  default:
  // do something here to avoid the error
}
loonix