CallStateReady constructor

const CallStateReady({
  1. required CallProtocol protocol,
  2. required List<CallServer> servers,
  3. required String config,
  4. required String encryptionKey,
  5. required List<String> emojis,
  6. required bool allowP2p,
})

The call is ready to use

Implementation

const CallStateReady({
  required this.protocol,
  required this.servers,
  required this.config,
  required this.encryptionKey,
  required this.emojis,
  required this.allowP2p,
});