FormHeaderWidget constructor

const FormHeaderWidget({
  1. Key? key,
  2. Color? imageColor,
  3. double? heightBetween,
  4. String? image,
  5. required String title,
  6. required String subTitle,
  7. double imageHeight = 0.15,
  8. TextAlign? textAlign,
  9. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
})

Implementation

const FormHeaderWidget({
  super.key,
  this.imageColor,
  this.heightBetween,
  this.image,
  required this.title,
  required this.subTitle,
  this.imageHeight = 0.15,
  this.textAlign,
  this.crossAxisAlignment = CrossAxisAlignment.start,
});