ShareEventModalOptions constructor

ShareEventModalOptions(
  1. {Color backgroundColor = const Color.fromRGBO(131, 192, 233, 0.25),
  2. required bool isShareEventModalVisible,
  3. required VoidCallback onShareEventClose,
  4. bool shareButtons = true,
  5. String position = 'topRight',
  6. required String roomName,
  7. required String adminPasscode,
  8. required String islevel,
  9. EventType eventType = EventType.webinar,
  10. String? localLink = ''}
)

Implementation

ShareEventModalOptions({
  this.backgroundColor = const Color.fromRGBO(131, 192, 233, 0.25),
  required this.isShareEventModalVisible,
  required this.onShareEventClose,
  this.shareButtons = true,
  this.position = 'topRight',
  required this.roomName,
  required this.adminPasscode,
  required this.islevel,
  this.eventType = EventType.webinar,
  this.localLink = '',
});