speechBubble method

Widget speechBubble()

Implementation

Widget speechBubble() {
  return Material(
    borderRadius: BorderRadius.all(
      Radius.circular(borderRadius),
    ),
    color: color,
    elevation: 1.0,
    child: Container(
      height: height,
      width: width,
      padding: padding ?? const EdgeInsets.all(8.0),
      child: child,
    ),
  );
}