callRenderAndWait method

Future<bool> callRenderAndWait({
  1. Duration timeout = const Duration(seconds: 3),
})

Implementation

Future<bool> callRenderAndWait({
  Duration timeout = const Duration(seconds: 3),
}) {
  var wait = waiteRender(timeout: timeout);
  callRender();
  return wait;
}