expectNoRenderErrors method
void
expectNoRenderErrors()
Implementation
void expectNoRenderErrors() {
if (context.runtime.flutterErrors.isNotEmpty) {
throw EnsembleTestFailure(
'Expected no render errors, got: ${context.runtime.flutterErrors}',
);
}
}