GNRegularTextWidget constructor

const GNRegularTextWidget({
  1. Key? key,
  2. String? title,
  3. double? fontsize,
  4. Color? fontcolor,
  5. TextAlign? align,
  6. int? maxLines,
  7. TextOverflow? overflow,
  8. FontStyle? fontStyle,
  9. TextDirection? textDirection,
  10. bool handleNullValue = true,
  11. String nullValue = "",
})

Implementation

const GNRegularTextWidget({
  super.key,
  this.title,
  this.fontsize,
  this.fontcolor,
  this.align,
  this.maxLines,
  this.overflow,
  this.fontStyle,
  this.textDirection,
  this.handleNullValue = true,
  this.nullValue = "",
});