MenuModalOptions constructor

MenuModalOptions(
  1. {Color backgroundColor = const Color(0xFF83C0E9),
  2. required bool isVisible,
  3. required dynamic onClose(
      ),
    1. required List<CustomButton> customButtons,
    2. bool shareButtons = true,
    3. String position = 'bottomRight',
    4. required String roomName,
    5. required String adminPasscode,
    6. required String islevel,
    7. required EventType eventType,
    8. String? localLink = ''}
    )

    Implementation

    MenuModalOptions({
      this.backgroundColor = const Color(0xFF83C0E9),
      required this.isVisible,
      required this.onClose,
      required this.customButtons,
      this.shareButtons = true,
      this.position = 'bottomRight',
      required this.roomName,
      required this.adminPasscode,
      required this.islevel,
      required this.eventType,
      this.localLink = '',
    });