ZegoMoreButton constructor

const ZegoMoreButton({
  1. Key? key,
  2. required List<Widget> menuButtonListFunc(),
  3. ButtonIcon? icon,
  4. Size menuItemSize = const Size(60.0, 60.0),
  5. int menuItemCountPerRow = 5,
  6. double menuRowHeight = 80.0,
  7. Color menuBackgroundColor = const Color(0xff262A2D),
  8. Size? iconSize,
  9. Size? buttonSize,
  10. dynamic onSheetPopUp(
    1. int
    )?,
  11. dynamic onSheetPop(
    1. int
    )?,
})

Implementation

const ZegoMoreButton({
  Key? key,
  required this.menuButtonListFunc,
  this.icon,
  this.menuItemSize = const Size(60.0, 60.0),
  this.menuItemCountPerRow = 5,
  this.menuRowHeight = 80.0,
  this.menuBackgroundColor = const Color(0xff262A2D),
  this.iconSize,
  this.buttonSize,
  this.onSheetPopUp,
  this.onSheetPop,
}) : super(key: key);