CustomForm constructor

const CustomForm({
  1. required Widget form,
  2. void onPress()?,
  3. String? image,
  4. Color shadowColor = Colors.black,
  5. double imageRadius = 40,
  6. int marginTopPercent = 15,
  7. bool enable = true,
  8. String? text,
  9. String? tag,
  10. double blurRadius = 100,
  11. ButtonStyle? buttonStyle,
  12. double? fontSize,
  13. double? buttonWidth,
})

Implementation

const CustomForm({
  required this.form,
  this.onPress,
  this.image,
  this.shadowColor = Colors.black,
  this.imageRadius = 40,
  this.marginTopPercent = 15,
  this.enable = true,
  this.text,
  this.tag,
  this.blurRadius = 100,
  this.buttonStyle,
  this.fontSize,
  this.buttonWidth,
});