fromDartListNullableOperationIdNullableToGraphQLListNullableOperationIdNullable function

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

Implementation

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