getPins method

  1. @override
Future<ChatResult<List<MessagePin>>> getPins(
  1. String roomId
)
override

Implementation

@override
Future<ChatResult<List<MessagePin>>> getPins(String roomId) async {
  return ChatSuccess(_pins[roomId] ?? const []);
}