NavbarActionButton constructor

const NavbarActionButton({
  1. Key? key,
  2. VoidCallback? action,
  3. String asset = '',
  4. Widget? child,
  5. Color? color,
  6. double dimension = kNavbarHeight,
})

Implementation

const NavbarActionButton({
  super.key,
  this.action,
  this.asset = '',
  this.child,
  this.color,
  this.dimension = kNavbarHeight,
});