FollyCell.dateTime constructor
FollyCell.dateTime(})
Implementation
FollyCell.dateTime(
final DateTime date, {
final EdgeInsets padding = EdgeInsets.zero,
final Alignment align = Alignment.center,
final Color color = Colors.transparent,
final TextAlign textAlign = TextAlign.center,
final TextStyle? style,
final String locale = 'pt_br',
final String pattern = 'dd/MM/yyyy HH:mm',
final bool selectable = false,
final Key? key,
}) : this.date(
date,
padding: padding,
align: align,
color: color,
textAlign: textAlign,
style: style,
locale: locale,
pattern: pattern,
selectable: selectable,
key: key,
);