StarRating.parse constructor

StarRating.parse(
  1. XmlElement? element
)

Implementation

factory StarRating.parse(XmlElement? element) {
  return StarRating(
    average: double.tryParse(element?.getAttribute('average') ?? '0'),
    count: int.tryParse(element?.getAttribute('count') ?? '0'),
    min: int.tryParse(element?.getAttribute('min') ?? '0'),
    max: int.tryParse(element?.getAttribute('max') ?? '0'),
  );
}