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