Skip to content

ElectricChargeOps

extension ElectricChargeOps on num

Extension methods for constructing ElectricCharge values from num.

Properties

ampereHours extension no setter

ElectricCharge get ampereHours

Creates an ElectricCharge of this value in ampere-hours.

Available on num, provided by the ElectricChargeOps extension

Implementation
dart
ElectricCharge get ampereHours => ElectricCharge.ampereHours(this);

coulombs extension no setter

ElectricCharge get coulombs

Creates an ElectricCharge of this value in coulombs.

Available on num, provided by the ElectricChargeOps extension

Implementation
dart
ElectricCharge get coulombs => ElectricCharge.coulombs(this);

milliampereHours extension no setter

ElectricCharge get milliampereHours

Creates an ElectricCharge of this value in milliampere-hours.

Available on num, provided by the ElectricChargeOps extension

Implementation
dart
ElectricCharge get milliampereHours => ElectricCharge.milliampereHours(this);