fromDartListOperationIdNullableToGraphQLListOperationIdNullable function
- List<
OperationId?> v
Implementation
List<String?> fromDartListOperationIdNullableToGraphQLListOperationIdNullable(
List<OperationId?> v,
) => v
.map((e) => fromDartOperationIdNullableToGraphQLOperationIdNullable(e))
.toList();