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 {
  throw UnimplementedError(
    'fetchConversation: use a REST adapter or override this method.',
  );
}