text property
Implementation
String get text {
if (this == null) {
return "0";
}
return this!.toStringAsFixed(2).replaceAll('.00', '');
}
String get text {
if (this == null) {
return "0";
}
return this!.toStringAsFixed(2).replaceAll('.00', '');
}