getBubbleStyle static method

BubbleStyle getBubbleStyle(
  1. bool isAnonymous,
  2. bool isAssistant,
  3. bool isCanceled
)

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),
  );
}