operator * method

num operator *(
  1. dynamic other
)
inherited

Multiplication operator.

Implementation

num operator *(other) {
  if (other == null) {
    return raw;
  }
  if (other is T) {
    return raw * other;
  }
  return raw * other.raw;
}