cube property
num
get
cube
Returns the cube of the number (this * this * this).
Implementation
num get cube => this * this * this;
Returns the cube of the number (this * this * this).
num get cube => this * this * this;