BreakoutRoomsModalOptions class

Options for configuring the BreakoutRoomsModal widget.

This modal manages breakout rooms, allowing for creating, editing, and deleting rooms.

Example Usage:

final breakoutOptions = BreakoutRoomsModalOptions(
  isVisible: true,
  onBreakoutRoomsClose: closeModal,
  parameters: breakoutRoomParams,
);

Constructors

BreakoutRoomsModalOptions({required bool isVisible, required VoidCallback onBreakoutRoomsClose, required BreakoutRoomsModalParameters parameters, String position = 'topRight', Color backgroundColor = const Color(0xFF83C0E9)})

Properties

backgroundColor Color
Background color of the modal.
final
hashCode int
The hash code for this object.
no setterinherited
isVisible bool
Determines if the modal is visible.
final
onBreakoutRoomsClose VoidCallback
Callback function to close the modal.
final
parameters BreakoutRoomsModalParameters
Parameters for managing breakout rooms.
final
position String
Position of the modal on the screen.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited