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