HiddenMenu constructor

HiddenMenu({
  1. Key? key,
  2. DecorationImage? background,
  3. List<ItemHiddenMenu?>? itens,
  4. dynamic selectedListern(
    1. int
    )?,
  5. int? initPositionSelected,
  6. Color? backgroundColorMenu,
  7. bool enableShadowItensMenu = false,
  8. TypeOpen typeOpen = TypeOpen.FROM_LEFT,
  9. Widget? title,
})

Implementation

HiddenMenu(
    {Key? key,
    this.background,
    this.itens,
    this.selectedListern,
    this.initPositionSelected,
    this.backgroundColorMenu,
    this.enableShadowItensMenu = false,
    this.typeOpen = TypeOpen.FROM_LEFT,
    this.title})
    : super(key: key);