fromGraphQLListNullableChatVersionNullableToDartListNullableChatVersionNullable function
Implementation
List<ChatVersion?>?
fromGraphQLListNullableChatVersionNullableToDartListNullableChatVersionNullable(
List<Object?>? v,
) =>
v
?.map(
(e) => fromGraphQLChatVersionNullableToDartChatVersionNullable(
e as String?,
),
)
.toList();