fromDartListOperationVersionNullableToGraphQLListOperationVersionNullable function
- List<
OperationVersion?> v
Implementation
List<String?>
fromDartListOperationVersionNullableToGraphQLListOperationVersionNullable(
List<OperationVersion?> v,
) => v
.map(
(e) =>
fromDartOperationVersionNullableToGraphQLOperationVersionNullable(e),
)
.toList();