perimeter property
double
get
perimeter
Returns the perimeter of a circle with this number as radius.
Example: 12.perimeter -> 75.39822368615503
Implementation
double get perimeter => 2 * pi * this;
Returns the perimeter of a circle with this number as radius.
Example: 12.perimeter -> 75.39822368615503
double get perimeter => 2 * pi * this;