drawError method
Implementation
void drawError(PaintingContext context, ui.Offset offset, String message) {
final errorBox = RenderErrorBox(message);
errorBox.layout(constraints);
errorBox.paint(context, offset);
}
void drawError(PaintingContext context, ui.Offset offset, String message) {
final errorBox = RenderErrorBox(message);
errorBox.layout(constraints);
errorBox.paint(context, offset);
}