beaufort property

SpeedConverter beaufort
final

Implementation

static final beaufort = SpeedConverter._(
  'beaufort',
  1.0,
  f: (ms) => (ms / 0.836).squared().cbrt(),
  r: (b) => 0.836 * b.cubed().sqrt(),
);