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