getBubbleStyle static method
Implementation
static BubbleStyle getBubbleStyle(
bool isAnonymous,
bool isAssistant,
bool isCanceled,
) {
return BubbleStyle(
padding: const BubbleEdges.all(15),
margin: const BubbleEdges.all(8),
borderColor: null,
nipHeight: 18,
color: getBubbleColor(isAssistant, isAnonymous, isCanceled),
);
}