operator * method

  1. @override
Int32 operator *(
  1. dynamic other
)
override

Multiplication operator.

Implementation

@override
Int32 operator *(other) {
  // TODO(rice) - optimize
  return (toInt64() * other).toInt32();
}