scale method

  1. @override
int scale(
  1. int a,
  2. num f
)
override

Computes the multiplicative scaling: a * f.

Implementation

@override
int scale(int a, num f) => a * f.round();