fromDartListIncomingChatCallsCursorToGraphQLListIncomingChatCallsCursor function
Implementation
List<String>
fromDartListIncomingChatCallsCursorToGraphQLListIncomingChatCallsCursor(
List<IncomingChatCallsCursor> v,
) => v
.map(
(e) => fromDartIncomingChatCallsCursorToGraphQLIncomingChatCallsCursor(e),
)
.toList();