times method

double? times(
  1. num? other
)

Implementation

double? times(num? other) {
  if (this == null) return null;
  if (other == null) return this!.toDouble();
  return (this! * other).toDouble();
}