fromGraphQLListChatItemVersionNullableToDartListChatItemVersionNullable function
Implementation
List<ChatItemVersion?>
fromGraphQLListChatItemVersionNullableToDartListChatItemVersionNullable(
List<Object?> v,
) => v
.map(
(e) => fromGraphQLChatItemVersionNullableToDartChatItemVersionNullable(
e as String?,
),
)
.toList();