watchersCountText method

  1. @override
String watchersCountText(
  1. int count
)

The text for showing the watchers count based on count

Implementation

@override
String watchersCountText(int count) {
  if (count == 1) return '1 Online';
  return '$count Online';
}