PrefixButton constructor

const PrefixButton({
  1. Key? key,
  2. String title = '',
  3. String? subtitle,
  4. void onPressed()?,
  5. TextStyle? style,
  6. Widget? prefix,
})

Implementation

const PrefixButton({
  super.key,
  this.title = '',
  this.subtitle,
  this.onPressed,
  this.style,
  this.prefix,
});