build method

  1. @override
Widget build(
  1. BuildContext context
)
override

Implementation

@override
Widget build(BuildContext context) {
  return HubbleButton(
    onPressed: () => onPressed?.call(context),
    state: state,
    width: width,
    height: height,
    size: size,
    isGhost: isGhost,
    isOutlined: isOutlined,
    tapEvent: tapEvent,
    child: child.build(context),
  );
}