StreamMessageBubble constructor
StreamMessageBubble({
- Key? key,
- required Widget child,
- EdgeInsetsGeometry? padding,
- StreamMessageBubbleStyle? style,
Creates a message bubble.
The child is required. An optional style can override individual
fields; unset fields fall back to theme, then to defaults.
Implementation
StreamMessageBubble({
super.key,
required Widget child,
EdgeInsetsGeometry? padding,
StreamMessageBubbleStyle? style,
}) : props = .new(child: child, padding: padding, style: style);