MenuModalOptions constructor

MenuModalOptions({
  1. Color backgroundColor = const Color(0xFF83C0E9),
  2. required bool isVisible,
  3. required dynamic onClose(),
  4. required List<CustomButton> customButtons,
  5. bool shareButtons = true,
  6. String position = 'bottomRight',
  7. required String roomName,
  8. required String adminPasscode,
  9. required String islevel,
  10. required EventType eventType,
  11. 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 = '',
});