feat: Working VoIP calling implementation (Flutter + Android)
Working video and audio calls, as well as android integration
This commit is contained in:
commit
96a7e211a0
60 changed files with 2445 additions and 0 deletions
11
lib/models/registration_state.dart
Normal file
11
lib/models/registration_state.dart
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
enum RegistrationState {
|
||||
None,
|
||||
Progress,
|
||||
Ok,
|
||||
Cleared,
|
||||
Failed;
|
||||
|
||||
static RegistrationState fromOrdinal(int ordinal) {
|
||||
return values[ordinal];
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue