fromGraphQLListOperationVersionToDartListOperationVersion function

List<OperationVersion> fromGraphQLListOperationVersionToDartListOperationVersion(
  1. List<Object?> v
)

Implementation

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