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(
  num number, {
  EdgeInsets padding = EdgeInsets.zero,
  Alignment align = Alignment.centerRight,
  Color color = Colors.transparent,
  TextAlign textAlign = TextAlign.end,
  TextStyle? style,
  String locale = 'pt_br',
  String pattern = '#,##0',
  bool selectable = false,
  Key? key,
}) : this.number(
        number,
        padding: padding,
        align: align,
        color: color,
        textAlign: textAlign,
        style: style,
        locale: locale,
        pattern: pattern,
        selectable: selectable,
        key: key,
      );