toNatfirstRatingString method
Implementation
String toNatfirstRatingString() {
if (this == null || this! < 0) {
return '';
}
return this!.toStringAsFixed(1);
}
String toNatfirstRatingString() {
if (this == null || this! < 0) {
return '';
}
return this!.toStringAsFixed(1);
}