sin static method

double sin(
  1. num x
)

Implementation

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