ButtonChip constructor

ButtonChip(
  1. String title, {
  2. bool isSelected = false,
  3. GestureTapCallback? onTap,
  4. TextStyle? textStyle,
  5. EdgeInsetsGeometry padding = const EdgeInsets.only(top: 12, bottom: 12, left: 16, right: 16),
  6. dynamic onLongPress()?,
})

Implementation

ButtonChip(this.title,
    {this.isSelected = false,
    this.onTap,
    this.textStyle,
    this.padding =
        const EdgeInsets.only(top: 12, bottom: 12, left: 16, right: 16),
    this.onLongPress});