liblinphone_flutter/lib/models/call_state.dart
Andrew nuark G 96a7e211a0 feat: Working VoIP calling implementation (Flutter + Android)
Working video and audio calls, as well as android integration
2025-08-30 18:46:02 +07:00

28 lines
443 B
Dart

enum CallState {
Idle,
IncomingReceived,
PushIncomingReceived,
OutgoingInit,
OutgoingProgress,
OutgoingRinging,
OutgoingEarlyMedia,
Connected,
StreamsRunning,
Pausing,
Paused,
Resuming,
Referred,
Error,
End,
PausedByRemote,
UpdatedByRemote,
IncomingEarlyMedia,
Updating,
Released,
EarlyUpdatedByRemote,
EarlyUpdating;
static CallState fromOrdinal(int ordinal) {
return values[ordinal];
}
}