fetchConversation method

  1. @override
Future<Conversation> fetchConversation(
  1. String id
)
override

Loads the full Conversation snapshot at startup.

Implementation

@override
Future<Conversation> fetchConversation(String id) async {
  _conversationId = id;
  // NOTE: deserialisation delegated to host app.
  throw UnimplementedError(
      'RestTransport.fetchConversation: provide a custom decoder.');
}