widget method

Widget widget(
  1. BuildContext context
)
override

Implementation

widget(context) {
  return ActionChip(
    key: key,
    avatar: avatar,
    label: label ?? Text(""),
    labelStyle: style?.value,
    labelPadding: labelPadding?.value,
    onPressed: onPressed,
    pressElevation: pressElevation,
    tooltip: tooltip,
    side: side,
    shape: shape,
    clipBehavior: clipBehavior ?? Clip.none,
    focusNode: focusNode,
    autofocus: autofocus ?? false,
    backgroundColor: backgroundColor,
    disabledColor: disabledColor,
    padding: padding?.value,
    visualDensity: visualDensity,
    materialTapTargetSize: materialTapTargetSize,
    elevation: elevation,
    shadowColor: shadowColor,
    surfaceTintColor: surfaceTintColor,
    iconTheme: iconTheme,
  );
}