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