Message constructor

Message({
  1. required Widget widgetMessageOwner(
    1. List<Message>
    ),
  2. required int? timestamp,
  3. required AnimationController animationController,
  4. DocumentSnapshot<Object?>? doc,
  5. Map<String, dynamic>? tempDoc,
})

Implementation

Message({
  required this.widgetMessageOwner,
  required this.timestamp,
  required this.animationController,
  this.doc,
  this.tempDoc,
});