listDms method
Implementation
@override
Future<List<Map<String, dynamic>>> listDms({String? consentState}) async {
await _ensureInitialized();
final dms = await rust_conversations.listDms(consentState: consentState);
return dms.map(_conversationInfoToMap).toList();
}