GrxButtonOptions constructor

const GrxButtonOptions({
  1. required String title,
  2. VoidCallback? onPressed,
  3. IconData? icon,
  4. Color? backgroundColor,
  5. Color foregroundColor = GrxColors.neutrals,
})

Implementation

const GrxButtonOptions({
  required this.title,
  this.onPressed,
  this.icon,
  this.backgroundColor,
  this.foregroundColor = GrxColors.neutrals,
});