operator / method

double operator /(
  1. dynamic other
)
inherited

Division operator.

Implementation

double operator /(other) {
  if (other == null) {
    return raw.toDouble();
  }
  if (other is T) {
    return raw / other;
  }
  return raw / other.raw;
}