FollyCell.time constructor

FollyCell.time(
  1. DateTime date, {
  2. EdgeInsets padding = EdgeInsets.zero,
  3. Alignment align = Alignment.center,
  4. Color color = Colors.transparent,
  5. TextAlign textAlign = TextAlign.center,
  6. TextStyle? style,
  7. String locale = 'pt_br',
  8. String pattern = 'HH:mm',
  9. bool selectable = false,
  10. Key? key,
})

Implementation

FollyCell.time(
  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 = '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,
     );