getCurrentTime method

Future<int> getCurrentTime()

Gets the current time.

Implementation

Future<int> getCurrentTime() {
  return _controller?.getCurrentTime() ?? Future.value(0);
}