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