DefaultErrorWidget constructor

DefaultErrorWidget({
  1. Key? key,
  2. Alignment alignment = Alignment.center,
  3. BoxFit boxFit = BoxFit.contain,
  4. BlendMode blendMode = BlendMode.src,
  5. String? semanticLabel,
  6. bool matchTextDirection = false,
  7. bool excludeFromSemantics = false,
  8. double? width,
  9. double? height,
  10. Color? color,
})

Implementation

DefaultErrorWidget(
    {Key? key,
    this.alignment = Alignment.center,
    this.boxFit = BoxFit.contain,
    this.blendMode = BlendMode.src,
    this.semanticLabel,
    this.matchTextDirection = false,
    this.excludeFromSemantics = false,
    this.width,
    this.height,
    this.color})
    : super(key: key);