fromGraphQLListNullableChatDirectLinkVersionNullableToDartListNullableChatDirectLinkVersionNullable function
Implementation
List<ChatDirectLinkVersion?>?
fromGraphQLListNullableChatDirectLinkVersionNullableToDartListNullableChatDirectLinkVersionNullable(
List<Object?>? v,
) => v
?.map(
(e) =>
fromGraphQLChatDirectLinkVersionNullableToDartChatDirectLinkVersionNullable(
e as String?,
),
)
.toList();