titleValue property

double titleValue

Implementation

double get titleValue {
  if (title.isEmpty) {
    return 0;
  } else {
    return double.parse(title);
  }
}