area method Null safety

double area(
  1. double radius
)

Implementation

static double area(double radius) => pi * pow(radius, 2);