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