fromDartListRecentChatsCursorToGraphQLListRecentChatsCursor function
Implementation
List<String> fromDartListRecentChatsCursorToGraphQLListRecentChatsCursor(
List<RecentChatsCursor> v,
) =>
v
.map((e) => fromDartRecentChatsCursorToGraphQLRecentChatsCursor(e))
.toList();