FollyCell.integer constructor

FollyCell.integer(
  1. num number, {
  2. EdgeInsets padding = EdgeInsets.zero,
  3. Alignment align = Alignment.centerRight,
  4. Color color = Colors.transparent,
  5. TextAlign textAlign = TextAlign.end,
  6. TextStyle? style,
  7. String locale = 'pt_br',
  8. String pattern = '#,##0',
  9. bool selectable = false,
  10. Key? key,
})

Implementation

FollyCell.integer(
  final num number, {
  final EdgeInsets padding = EdgeInsets.zero,
  final Alignment align = Alignment.centerRight,
  final Color color = Colors.transparent,
  final TextAlign textAlign = TextAlign.end,
  final TextStyle? style,
  final String locale = 'pt_br',
  final String pattern = '#,##0',
  final bool selectable = false,
  final Key? key,
}) : this.number(
       number,
       padding: padding,
       align: align,
       color: color,
       textAlign: textAlign,
       style: style,
       locale: locale,
       pattern: pattern,
       selectable: selectable,
       key: key,
     );