ZIMConversationQueryConfig.fromMap constructor

ZIMConversationQueryConfig.fromMap(
  1. Map map
)

Implementation

ZIMConversationQueryConfig.fromMap(Map<dynamic, dynamic> map)
    : nextConversation = (map['nextConversation'] != null)
          ? ZIMDataUtils.parseZIMConversationFromMap(map['nextConversation'])
          : null,
      count = map['count']!;