ContentChip constructor
const
ContentChip({
- Key? key,
- required String text,
- Color? backgroundColor,
- Color? textColor,
- double? fontSize,
- FontWeight? fontWeight,
- EdgeInsetsGeometry? padding,
- double? borderRadius,
- Color? borderColor,
- double? borderWidth,
- IconData? prefixIcon,
- IconData? suffixIcon,
- double? iconSize,
- Color? iconColor,
- VoidCallback? onTap,
Implementation
const ContentChip({
Key? key,
required this.text,
this.backgroundColor,
this.textColor,
this.fontSize,
this.fontWeight,
this.padding,
this.borderRadius,
this.borderColor,
this.borderWidth,
this.prefixIcon,
this.suffixIcon,
this.iconSize,
this.iconColor,
this.onTap,
}) : super(key: key);