logLength method

  1. @override
Future<int> logLength(
  1. String roomId
)
override

The current roomId log length

Implementation

@override
Future<int> logLength(String roomId) async {
  return _rooms[roomId]?.log.length ?? 0;
}