multiply method

RadFloat multiply(
  1. num i
)

Implementation

RadFloat multiply(num i) {
  return RadFloat(_value * i.toDouble());
}