getSystemTickCount method

  1. @override
Future<int> getSystemTickCount()
override

Gets the current system tick count

Implementation

@override
Future<int> getSystemTickCount() async {
  final int tickCount =
      await methodChannel.invokeMethod<int>('getSystemTickCount') ?? 0;
  return tickCount;
}