Skip to content

PressureOps

extension PressureOps on num

Extension methods for constructing Pressure values from num.

Properties

atmospheres extension no setter

Pressure get atmospheres

Creates a Pressure of this value in standard atmospheres.

Available on num, provided by the PressureOps extension

Implementation
dart
Pressure get atmospheres => Pressure.atmospheres(this);

bars extension no setter

Pressure get bars

Creates a Pressure of this value in bars.

Available on num, provided by the PressureOps extension

Implementation
dart
Pressure get bars => Pressure.bars(this);

gigapascals extension no setter

Pressure get gigapascals

Creates a Pressure of this value in gigapascals.

Available on num, provided by the PressureOps extension

Implementation
dart
Pressure get gigapascals => Pressure.gigapascals(this);

kilopascals extension no setter

Pressure get kilopascals

Creates a Pressure of this value in kilopascals.

Available on num, provided by the PressureOps extension

Implementation
dart
Pressure get kilopascals => Pressure.kilopascals(this);

megapascals extension no setter

Pressure get megapascals

Creates a Pressure of this value in megapascals.

Available on num, provided by the PressureOps extension

Implementation
dart
Pressure get megapascals => Pressure.megapascals(this);

millibars extension no setter

Pressure get millibars

Creates a Pressure of this value in millibars.

Available on num, provided by the PressureOps extension

Implementation
dart
Pressure get millibars => Pressure.millibars(this);

pascals extension no setter

Pressure get pascals

Creates a Pressure of this value in pascals.

Available on num, provided by the PressureOps extension

Implementation
dart
Pressure get pascals => Pressure.pascals(this);

poundsPerSquareInch extension no setter

Pressure get poundsPerSquareInch

Creates a Pressure of this value in pounds per square inch.

Available on num, provided by the PressureOps extension

Implementation
dart
Pressure get poundsPerSquareInch => Pressure.poundsPerSquareInch(this);

torr extension no setter

Pressure get torr

Creates a Pressure of this value in torr.

Available on num, provided by the PressureOps extension

Implementation
dart
Pressure get torr => Pressure.torr(this);