isEmpty property

bool isEmpty

Whether or not this Address instance is empty.

Implementation

bool get isEmpty =>
    city.isEmpty && state.isEmpty && street.isEmpty && zip.isEmpty;