getReceipts method

  1. @override
Future<ChatResult<List<ReadReceipt>>> getReceipts(
  1. String roomId
)
override

Implementation

@override
Future<ChatResult<List<ReadReceipt>>> getReceipts(String roomId) async {
  return ChatSuccess(_receipts[roomId] ?? const []);
}