TutorBubble constructor

const TutorBubble({
  1. Key? key,
  2. required TutorBubbleRole role,
  3. required String text,
  4. String? mode,
  5. String? kind,
  6. DateTime? timestamp,
  7. double maxWidth = 560,
})

Implementation

const TutorBubble({
  super.key,
  required this.role,
  required this.text,
  this.mode,
  this.kind,
  this.timestamp,
  this.maxWidth = 560,
});