TitleView constructor

const TitleView({
  1. Key? key,
  2. required MeetingModel currentMeeting,
  3. String title = '',
  4. void onLeave(
    1. bool didStop
    )?,
  5. dynamic onMinimizeChanged(
    1. bool
    )?,
  6. bool isMinimized = false,
})

Implementation

const TitleView({
  super.key,
  required this.currentMeeting,
  this.title = '',
  this.onLeave,
  this.onMinimizeChanged,
  this.isMinimized = false,
});