fromDartListChatItemVersionNullableToGraphQLListChatItemVersionNullable function
- List<
ChatItemVersion?> v
Implementation
List<String?>
fromDartListChatItemVersionNullableToGraphQLListChatItemVersionNullable(
List<ChatItemVersion?> v,
) =>
v
.map(
(e) =>
fromDartChatItemVersionNullableToGraphQLChatItemVersionNullable(
e,
),
)
.toList();