ButtonConfig constructor

const ButtonConfig({
  1. required String text,
  2. TextColorPreset type = TextColorPreset.grey,
  3. bool isBold = false,
  4. VoidCallback? onClick,
})

Implementation

const ButtonConfig({
  required this.text,
  this.type = TextColorPreset.grey,
  this.isBold = false,
  this.onClick,
});