ButtonContents constructor

ButtonContents({
  1. double? iconSize,
  2. String text = '',
  3. String? iconUrl,
  4. TextStyle? textStyle,
  5. bool darkMode = false,
  6. double? separator,
  7. Color? textColor,
  8. bool isIcon = false,
})

Implementation

ButtonContents({
  this.iconSize,
  this.text = '',
  this.iconUrl,
  this.textStyle,
  this.darkMode = false,
  this.separator,
  this.textColor,
  this.isIcon = false,
});