defineSystemsOfUnits method

  1. @override
void defineSystemsOfUnits()
override

Method called by the constructor to define subclass systems of units along their base units.

Implementation

@override
void defineSystemsOfUnits() {
  _systemOfUnits = DividedSystemOfUnits<Speed, Length, Time>(this);
  meterPerSecond;

  systemsOfUnits.add(_systemOfUnits);
}