fromGraphQLListNullableOperationNumNullableToDartListNullableOperationNumNullable function

List<OperationNum?>? fromGraphQLListNullableOperationNumNullableToDartListNullableOperationNumNullable(
  1. List<Object?>? v
)

Implementation

List<OperationNum?>?
fromGraphQLListNullableOperationNumNullableToDartListNullableOperationNumNullable(
  List<Object?>? v,
) => v
    ?.map(
      (e) =>
          fromGraphQLOperationNumNullableToDartOperationNumNullable(e as int?),
    )
    .toList();