drawError method

void drawError(
  1. PaintingContext context,
  2. Offset offset,
  3. String message
)

Implementation

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