tan static method

double tan(
  1. num x
)

Implementation

static double tan(num x) {
  return math.tan(x);
}