FastRoomView constructor

const FastRoomView({
  1. Key? key,
  2. required FastRoomOptions fastRoomOptions,
  3. FastThemeData? theme,
  4. FastThemeData? darkTheme,
  5. bool useDarkTheme = false,
  6. Locale? locate,
  7. FastRoomCreatedCallback? onFastRoomCreated,
  8. RoomControllerWidgetBuilder builder = defaultControllerBuilder,
})

Creates a new room view. The room view can be controlled using a FastRoomController that is passed to the onFastRoomCreated callback once the room is created.

Implementation

const FastRoomView({
  Key? key,
  required this.fastRoomOptions,
  this.theme,
  this.darkTheme,
  this.useDarkTheme = false,
  this.locate,
  this.onFastRoomCreated,
  this.builder = defaultControllerBuilder,
}) : super(key: key);