getFullAddress static method

String getFullAddress(
  1. String address,
  2. String city,
  3. String district
)

Implementation

static String getFullAddress(String address, String city, String district) {
  String temp = address;
  if (district.isNotEmpty) temp.isNotEmpty ? temp += ', $district' : temp = district;
  if (city.isNotEmpty) temp.isNotEmpty ? temp += ', $city' : temp = city;
  return temp;
}