operator & method

PrinterRect operator &(
  1. PrinterSize other
)

Implementation

PrinterRect operator &(PrinterSize other) => PrinterRect.fromLTWH(x ?? 0, y ?? 0, other.width ?? 0, other.height ?? 0);