processWelcome method

Future<List<Map<String, dynamic>>> processWelcome(
  1. Uint8List encryptedBytes
)

Decrypt an FCM/APNs push payload that arrived on the welcome topic (/xmtp/mls/1/w-${installationId}/proto). Returns the newly-created conversation(s) — usually 1, occasionally more from DM stitching. Each entry mirrors listConversations shape.

Implementation

Future<List<Map<String, dynamic>>> processWelcome(Uint8List encryptedBytes) {
  throw UnimplementedError('processWelcome() has not been implemented.');
}