Skip to content

VolumeOps

extension VolumeOps on num

Extension methods for constructing Volume values from num.

Properties

centilitres extension no setter

Volume get centilitres

Creates a Volume of this value in centilitres.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get centilitres => Volume.centilitres(this);

cubicFeet extension no setter

Volume get cubicFeet

Creates a Volume of this value in cubic feet.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get cubicFeet => Volume.cubicFeet(this);

cubicInches extension no setter

Volume get cubicInches

Creates a Volume of this value in cubic inches.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get cubicInches => Volume.cubicInches(this);

cubicMeters extension no setter

Volume get cubicMeters

Creates a Volume of this value in cubic meters.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get cubicMeters => Volume.cubicMeters(this);

cubicUsMiles extension no setter

Volume get cubicUsMiles

Creates a Volume of this value in cubic US miles.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get cubicUsMiles => Volume.cubicUsMiles(this);

cubicYards extension no setter

Volume get cubicYards

Creates a Volume of this value in cubic yards.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get cubicYards => Volume.cubicYards(this);

decilitres extension no setter

Volume get decilitres

Creates a Volume of this value in decilitres.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get decilitres => Volume.decilitres(this);

fluidOunces extension no setter

Volume get fluidOunces

Creates a Volume of this value in fluid ounces.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get fluidOunces => Volume.fluidOunces(this);

hectolitres extension no setter

Volume get hectolitres

Creates a Volume of this value in hectolitres.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get hectolitres => Volume.hectolitres(this);

litres extension no setter

Volume get litres

Creates a Volume of this value in litres.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get litres => Volume.litres(this);

microlitres extension no setter

Volume get microlitres

Creates a Volume of this value in microlitres.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get microlitres => Volume.microlitres(this);

millilitres extension no setter

Volume get millilitres

Creates a Volume of this value in millilitres.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get millilitres => Volume.millilitres(this);

nanolitres extension no setter

Volume get nanolitres

Creates a Volume of this value in nanolitres.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get nanolitres => Volume.nanolitres(this);

tablespoons extension no setter

Volume get tablespoons

Creates a Volume of this value in tablespoons.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get tablespoons => Volume.tablespoons(this);

teaspoons extension no setter

Volume get teaspoons

Creates a Volume of this value in teaspoons.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get teaspoons => Volume.teaspoons(this);

usCups extension no setter

Volume get usCups

Creates a Volume of this value in US cups.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get usCups => Volume.usCups(this);

usGallons extension no setter

Volume get usGallons

Creates a Volume of this value in US gallons.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get usGallons => Volume.usGallons(this);

usPints extension no setter

Volume get usPints

Creates a Volume of this value in US pints.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get usPints => Volume.usPints(this);

usQuarts extension no setter

Volume get usQuarts

Creates a Volume of this value in US quarts.

Available on num, provided by the VolumeOps extension

Implementation
dart
Volume get usQuarts => Volume.usQuarts(this);