BubbleSpecialOne constructor

const BubbleSpecialOne({
  1. Key? key,
  2. bool isSender = true,
  3. BoxConstraints? constraints,
  4. required String text,
  5. Color color = Colors.white70,
  6. bool tail = true,
  7. bool sent = false,
  8. bool delivered = false,
  9. bool seen = false,
  10. TextStyle textStyle = const TextStyle(color: Colors.black87, fontSize: 16),
})

Implementation

const BubbleSpecialOne({
  Key? key,
  this.isSender = true,
  this.constraints,
  required this.text,
  this.color = Colors.white70,
  this.tail = true,
  this.sent = false,
  this.delivered = false,
  this.seen = false,
  this.textStyle = const TextStyle(
    color: Colors.black87,
    fontSize: 16,
  ),
}) : super(key: key);