operator * method

Duration operator *(
  1. Duration other
)

Implementation

Duration operator *(Duration other) {
  return Duration(
    microseconds: inMicroseconds * other.inMicroseconds,
  );
}