multiplyByDouble method

Integer multiplyByDouble(
  1. double b
)

Implementation

Integer multiplyByDouble(double b) {
  final result = value * b;
  return Integer(result.toInt());
}