fromDartListOperationIdNullableToGraphQLListOperationIdNullable function

List<String?> fromDartListOperationIdNullableToGraphQLListOperationIdNullable(
  1. List<OperationId?> v
)

Implementation

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