ButtonConfig constructor

const ButtonConfig({
  1. Color? backgroundColor,
  2. Color? textColor,
  3. double? fontSize = 16,
  4. double? borderRadius = 8,
  5. EdgeInsetsGeometry? padding = const EdgeInsets.symmetric(horizontal: 20),
  6. double? borderWidth,
  7. Color? borderColor,
})

Implementation

const ButtonConfig({
  this.backgroundColor,
  this.textColor,
  this.fontSize = 16,
  this.borderRadius = 8,
  this.padding = const EdgeInsets.symmetric(horizontal: 20),
  this.borderWidth,
  this.borderColor,
});