toGenericAddress method
Implementation
String toGenericAddress() {
try {
String hello = "${getAddressLine1()}, ${getAddressLine2()}";
return hello;
} catch (e, s) {
if (kDebugMode) {
print(e);
print(s);
}
return "";
}
}