address method

String address()

Implementation

String address() =>
    ((placeStreet1 ?? '').isNotEmpty ? "$placeStreet1, " : "") +
    ((placeCity ?? '').isNotEmpty ? "$placeCity, " : "") +
    (placeCountry ?? '');