toAddress2String method

String toAddress2String()

Implementation

String toAddress2String() {
  if ((zip ?? "").isNotEmpty) {
    return '$street1\n$zip $city\n$country';
  } else {
    return '$street1\n$city\n$country';
  }
}