BubbleStatusRow constructor

const BubbleStatusRow({
  1. Key? key,
  2. Icon? stateIcon,
  3. bool isEdited = false,
  4. String? timestamp,
  5. Color textColor = Colors.black54,
})

Creates a BubbleStatusRow widget

Implementation

const BubbleStatusRow({
  Key? key,
  this.stateIcon,
  this.isEdited = false,
  this.timestamp,
  this.textColor = Colors.black54,
}) : super(key: key);