MessageRow constructor

const MessageRow({
  1. Key? key,
  2. required String id,
  3. required String channelId,
  4. required String photoUrl,
  5. required String author,
  6. required String date,
  7. required String body,
  8. required String uid,
})

Implementation

const MessageRow({
  Key? key,
  required this.id,
  required this.channelId,
  required this.photoUrl,
  required this.author,
  required this.date,
  required this.body,
  required this.uid,
}) : super(key: key);