fromDartListChatContactVersionNullableToGraphQLListChatContactVersionNullable function
Implementation
List<String?>
fromDartListChatContactVersionNullableToGraphQLListChatContactVersionNullable(
List<ChatContactVersion?> v,
) =>
v
.map(
(e) =>
fromDartChatContactVersionNullableToGraphQLChatContactVersionNullable(
e,
),
)
.toList();