RectangularWidget constructor

const RectangularWidget({
  1. Key? key,
  2. double? radius,
  3. double? borderWidth,
  4. String? imagePath,
  5. Color? backgroundColor,
  6. Color? foregroundColor,
  7. Color? borderColor,
  8. Widget? placeHolder,
  9. Widget? errorWidget,
  10. Text? text,
  11. bool? isOnlyText,
})

Implementation

const RectangularWidget(
    {Key? key,
    this.radius,
    this.borderWidth,
    this.imagePath,
    this.backgroundColor,
    this.foregroundColor,
    this.borderColor,
    this.placeHolder,
    this.errorWidget,
    this.text,
    this.isOnlyText})
    : super(key: key);