INNER CODE UNIT · Dart
CallPage
AgoraIO-Community/Agora-Flutter-Quickstart · lib/src/pages/call.dart:10
class CallPage extends StatefulWidget {
/// non-modifiable channel name of the page
final String? channelName;
/// non-modifiable client role of the page
final ClientRole? role;
/// Creates a call page with given channel name.
const CallPage({Key? key, this.channelName, this.role}) : super(key: key);
@override
_CallPageState createState() => _CallPageState();
}
class _CallPageState extends State<CallPage> {
final _users = <int>[];
final _infoStrings = <String>[];
bool muted = false;