fromGraphQLListChatItemIdToDartListChatItemId function
Implementation
List<ChatItemId> fromGraphQLListChatItemIdToDartListChatItemId(
List<Object?> v,
) => v.map((e) => fromGraphQLChatItemIdToDartChatItemId(e as String)).toList();
List<ChatItemId> fromGraphQLListChatItemIdToDartListChatItemId(
List<Object?> v,
) => v.map((e) => fromGraphQLChatItemIdToDartChatItemId(e as String)).toList();