fromDartListChatDirectLinkVersionNullableToGraphQLListChatDirectLinkVersionNullable function
Implementation
List<String?>
fromDartListChatDirectLinkVersionNullableToGraphQLListChatDirectLinkVersionNullable(
List<ChatDirectLinkVersion?> v,
) =>
v
.map(
(e) =>
fromDartChatDirectLinkVersionNullableToGraphQLChatDirectLinkVersionNullable(
e,
),
)
.toList();