ButtonNavigationExpandable constructor

ButtonNavigationExpandable({
  1. String? label,
  2. Icon? icon,
  3. Color? color,
  4. double? height,
  5. double? width,
  6. BorderRadius? borderRadius,
  7. required VoidCallback onPressed,
})

Implementation

ButtonNavigationExpandable({
  this.label,
  this.icon,
  this.color,
  this.height,
  this.width,
  this.borderRadius,
  required this.onPressed,
});