operator * method

double operator *(
  1. dynamic other
)
inherited

Implementation

double operator *(dynamic other) =>
    value * cond(other is _InternalShared, other.value, other);