VelocityOps
extension VelocityOps on numExtension methods for constructing Velocity values from num.
Properties
feetPerSecond extension no setter
Velocity get feetPerSecondCreates a Velocity of this value in feet per second.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get feetPerSecond => Velocity.feetPerSecond(this);kilometersPerHour extension no setter
Velocity get kilometersPerHourCreates a Velocity of this value in kilometers per hour.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get kilometersPerHour => Velocity.kilometersPerHour(this);kilometersPerSecond extension no setter
Velocity get kilometersPerSecondCreates a Velocity of this value in kilometers per second.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get kilometersPerSecond => Velocity.kilometersPerSecond(this);knots extension no setter
Velocity get knotsCreates a Velocity of this value in knots.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get knots => Velocity.knots(this);metersPerSecond extension no setter
Velocity get metersPerSecondCreates a Velocity of this value in meters per second.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get metersPerSecond => Velocity.metersPerSecond(this);millimetersPerSecond extension no setter
Velocity get millimetersPerSecondCreates a Velocity of this value in millimeters per second.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get millimetersPerSecond => Velocity.millimetersPerSecond(this);usMilesPerHour extension no setter
Velocity get usMilesPerHourCreates a Velocity of this value in US miles per hour.
Available on num, provided by the VelocityOps extension
Implementation
Velocity get usMilesPerHour => Velocity.usMilesPerHour(this);