getSeconds method

int getSeconds(
  1. int millonSeconds
)

Implementation

int getSeconds(int millonSeconds) {
  int seconds = (millonSeconds / 1000).ceil();

  return seconds;
}