operator * method

dynamic operator *(
  1. dynamic other
)

Multiplies a value or another box algebraically.

Implementation

dynamic operator *(dynamic other) => (value as dynamic) * _extract(other);