getCity function

Future getCity()

Implementation

Future getCity() async {
  if (_City == null) {
    await _assignAllValues();
  }
  return _City ?? "Error Fetching City";
}