getPlaceName method
Implementation
String getPlaceName() {
if (places == null) {
return '';
}
if (places!.isEmpty) {
return '';
}
return places![0].place;
}
String getPlaceName() {
if (places == null) {
return '';
}
if (places!.isEmpty) {
return '';
}
return places![0].place;
}