getPlaceName method

String getPlaceName()

Implementation

String getPlaceName() {
  if (places == null) {
    return '';
  }

  if (places!.isEmpty) {
    return '';
  }

  return places![0].place;
}