toMs method

int toMs()

Converts a time in seconds to milliseconds

Implementation

int toMs() {
  return (this * 1000).round();
}