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