buildMessageRow method

Widget buildMessageRow({
  1. required String id,
  2. required String uid,
  3. required String channelId,
  4. required String photo,
  5. required String author,
  6. required String body,
  7. required String date,
})

Implementation

Widget buildMessageRow(
        {required String id,
        required String uid,
        required String channelId,
        required String photo,
        required String author,
        required String body,
        required String date}) =>
    MessageRow(
        id: id,
        uid: uid,
        channelId: channelId,
        photoUrl: photo,
        author: author,
        body: body,
        date: date);