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