times method

Boost times(
  1. double num, [
  2. dynamic debugLabel
])

Implementation

Boost times(double num, [dynamic debugLabel]) {
  final amt = amount == null ? null : amount! * num;
  final pct = percent == null ? null : percent! * num;

  return Boost(amt, pct, debugLabel);
}