NbpTextFieldHeading constructor

const NbpTextFieldHeading({
  1. Key? key,
  2. required String? title,
  3. bool? isItRequired,
  4. TextStyle? titleStyle,
  5. Color? starColor,
  6. EdgeInsets? padding,
  7. TextStyle? starTextStyle,
})

Implementation

const NbpTextFieldHeading({
  super.key,
  required this.title,
  this.isItRequired,
  this.titleStyle,
  this.starColor,
  this.padding,
  this.starTextStyle,
});