rawChip method

RawChip rawChip({
  1. ChipThemeData? defaultProperties,
  2. Widget? avatar,
  3. TextStyle? labelStyle,
  4. EdgeInsetsGeometry? padding = const EdgeInsets.symmetric(horizontal: 4, vertical: 4),
  5. VisualDensity? visualDensity,
  6. EdgeInsetsGeometry? labelPadding,
  7. Widget? deleteIcon,
  8. void onDeleted()?,
  9. Color? deleteIconColor,
  10. String? deleteButtonTooltipMessage,
  11. void onPressed()?,
  12. void onSelected(
    1. bool
    )?,
  13. double? pressElevation,
  14. bool tapEnabled = true,
  15. bool selected = false,
  16. bool isEnabled = true,
  17. Color? disabledColor,
  18. Color? selectedColor,
  19. String? tooltip,
  20. BorderSide? side,
  21. OutlinedBorder? shape,
  22. Clip clipBehavior = Clip.none,
  23. FocusNode? focusNode,
  24. bool autofocus = false,
  25. WidgetStateProperty<Color?>? color,
  26. Color? backgroundColor,
  27. MaterialTapTargetSize? materialTapTargetSize,
  28. double? elevation = 3,
  29. Color? shadowColor,
  30. Color? surfaceTintColor,
  31. IconThemeData? iconTheme,
  32. Color? selectedShadowColor,
  33. bool? showCheckmark,
  34. Color? checkmarkColor,
  35. ShapeBorder avatarBorder = const CircleBorder(),
  36. BoxConstraints? avatarBoxConstraints,
  37. BoxConstraints? deleteIconBoxConstraints,
  38. ChipAnimationStyle? chipAnimationStyle,
})

Implementation

RawChip rawChip({
  ChipThemeData? defaultProperties,
  Widget? avatar,
  TextStyle? labelStyle,
  EdgeInsetsGeometry? padding = const EdgeInsets.symmetric(horizontal: 4, vertical: 4),
  VisualDensity? visualDensity,
  EdgeInsetsGeometry? labelPadding,
  Widget? deleteIcon,
  void Function()? onDeleted,
  Color? deleteIconColor,
  String? deleteButtonTooltipMessage,
  void Function()? onPressed,
  void Function(bool)? onSelected,
  double? pressElevation,
  bool tapEnabled = true,
  bool selected = false,
  bool isEnabled = true,
  Color? disabledColor,
  Color? selectedColor,
  String? tooltip,
  BorderSide? side,
  OutlinedBorder? shape,
  Clip clipBehavior = Clip.none,
  FocusNode? focusNode,
  bool autofocus = false,
  WidgetStateProperty<Color?>? color,
  Color? backgroundColor,
  MaterialTapTargetSize? materialTapTargetSize,
  double? elevation = 3,
  Color? shadowColor,
  Color? surfaceTintColor,
  IconThemeData? iconTheme,
  Color? selectedShadowColor,
  bool? showCheckmark,
  Color? checkmarkColor,
  ShapeBorder avatarBorder = const CircleBorder(),
  BoxConstraints? avatarBoxConstraints,
  BoxConstraints? deleteIconBoxConstraints,
  ChipAnimationStyle? chipAnimationStyle,
}) {
  return RawChip(
      label: this.text(),
      padding: padding,
      defaultProperties: defaultProperties,
      avatar: avatar,
      labelStyle: labelStyle,
      visualDensity: visualDensity,
      labelPadding: labelPadding,
      deleteIcon: deleteIcon,
      onDeleted: onDeleted,
      deleteIconColor: deleteIconColor,
      deleteButtonTooltipMessage: deleteButtonTooltipMessage,
      onPressed: onPressed,
      onSelected: onSelected,
      pressElevation: pressElevation,
      tapEnabled: tapEnabled,
      selected: selected,
      isEnabled: isEnabled,
      disabledColor: disabledColor,
      selectedColor: selectedColor,
      tooltip: tooltip,
      side: side,
      shape: shape,
      clipBehavior: clipBehavior,
      focusNode: focusNode,
      autofocus: autofocus,
      color: color,
      backgroundColor: backgroundColor,
      materialTapTargetSize: materialTapTargetSize,
      elevation: elevation,
      shadowColor: shadowColor,
      surfaceTintColor: surfaceTintColor,
      iconTheme: iconTheme,
      selectedShadowColor: selectedShadowColor,
      showCheckmark: showCheckmark,
      checkmarkColor: checkmarkColor,
      avatarBorder: avatarBorder,
      avatarBoxConstraints: avatarBoxConstraints,
      deleteIconBoxConstraints: deleteIconBoxConstraints,
      chipAnimationStyle: chipAnimationStyle);
}