operator * method

double? operator *(
  1. num other
)

Multiplication operator.

Implementation

double? operator *(num other) {
  if (value != null) {
    return value! * other;
  }
  return null;
}