testUISleepUnsafe function

  1. @Deprecated("Do not use this in production code!")
Future<int> testUISleepUnsafe({
  1. int? frames,
  2. int? ms,
})

Unsafe version of testUISleep.

Implementation

@Deprecated("Do not use this in production code!")
Future<int> testUISleepUnsafe({int? frames, int? ms}) =>
    _testUISleepImpl(frames: frames, ms: ms, maxMs: 9999999);