GNCustomDateWidget constructor

const GNCustomDateWidget({
  1. Key? key,
  2. required String date,
  3. Color? backgroundColor,
  4. Color? fontColor,
  5. Color? iconColor,
  6. double? fontSize,
  7. double? iconSize,
  8. bool? isBold = true,
  9. EdgeInsets? padding,
  10. TextAlign? align,
})

Implementation

const GNCustomDateWidget({
  super.key,
  required this.date,
  this.backgroundColor,
  this.fontColor,
  this.iconColor,
  this.fontSize,
  this.iconSize,
  this.isBold = true,
  this.padding, this.align,
});