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