null safety
This commit is contained in:
@@ -5,9 +5,9 @@ import 'package:fcs/helpers/theme.dart' as theme;
|
||||
class NumberCell extends StatelessWidget {
|
||||
final int number;
|
||||
final numberFormatter;
|
||||
final TextStyle textStyle;
|
||||
final TextStyle? textStyle;
|
||||
|
||||
NumberCell(this.number, {Key key, this.textStyle})
|
||||
NumberCell(this.number, {Key? key, this.textStyle})
|
||||
: numberFormatter = new NumberFormat("#,###"),
|
||||
super(key: key);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user