fromDartListChatContactsCursorToGraphQLListChatContactsCursor function
Implementation
List<String> fromDartListChatContactsCursorToGraphQLListChatContactsCursor(
List<ChatContactsCursor> v,
) =>
v
.map((e) => fromDartChatContactsCursorToGraphQLChatContactsCursor(e))
.toList();