cube property

num get cube

Returns the cube of the number (this * this * this).

Implementation

num get cube => this * this * this;