TDateTimeText constructor

const TDateTimeText({
  1. Key? key,
  2. required DateTime dateTime,
  3. TextStyle? style,
  4. String tooltipDateFormat = 'MMMM d, yyyy h:mm:ss a',
  5. String? customTooltipMessage,
  6. TTooltipPosition tooltipPosition = TTooltipPosition.auto,
})

Implementation

const TDateTimeText({
  super.key,
  required this.dateTime,
  this.style,
  this.tooltipDateFormat = 'MMMM d, yyyy h:mm:ss a',
  this.customTooltipMessage,
  this.tooltipPosition = TTooltipPosition.auto,
});