threadSeparatorText method

  1. @override
String threadSeparatorText(
  1. int replyCount
)

The text for showing the thread separator in case StreamMessageListView contains a parent message

Implementation

@override
String threadSeparatorText(int replyCount) {
  if (replyCount == 1) return '1 Reply';
  return '$replyCount Replies';
}