WemapActionButton constructor

const WemapActionButton({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. required String text,
  4. bool isExpanded = true,
  5. Color? backgroundColor,
  6. Color? foregroundColor,
  7. EdgeInsetsGeometry? padding,
  8. double? borderRadius,
})

Implementation

const WemapActionButton({
  super.key,
  required this.onPressed,
  required this.text,
  this.isExpanded = true,
  this.backgroundColor,
  this.foregroundColor,
  this.padding,
  this.borderRadius,
});