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