ErrorRenderObjectWidget constructor

const ErrorRenderObjectWidget({
  1. Key? key,
  2. String? message,
  3. Object? error,
  4. ParagraphStyle? paragraphStyle,
  5. TextStyle? textStyle,
  6. EdgeInsets? padding,
  7. double? minimumWidth,
  8. Color? backgroundColor,
  9. Widget? child,
})

Implementation

const ErrorRenderObjectWidget({
  super.key,
  this.message,
  this.error,
  this.paragraphStyle,
  this.textStyle,
  this.padding,
  this.minimumWidth,
  this.backgroundColor,
  super.child,
});