fromGraphQLListOperationVersionToDartListOperationVersion function
Implementation
List<OperationVersion>
fromGraphQLListOperationVersionToDartListOperationVersion(List<Object?> v) => v
.map((e) => fromGraphQLOperationVersionToDartOperationVersion(e as String))
.toList();