operator * method

SizedBox operator *(
  1. num value
)

Implementation

SizedBox operator *(num value) {
  return SizedBox(
      key: this.key,
      width: this.width.times(value),
      height: this.height.times(value));
}