getCurrentTimeMs property

Future<int?> getCurrentTimeMs

Accessing getCurrentTimeMs will return the local time based on the last known accurate time + delta since last sync.

Implementation

static Future<int?> get getCurrentTimeMs async {
  return await _channel.invokeMethod("GET_CURRENT_TIME_MS");
}