isNotEmpty property

bool get isNotEmpty

Implementation

bool get isNotEmpty => [
  city != null,
  country != null,
  line1 != null,
  line2 != null,
  postalCode != null,
  state != null,
].any((v) => v);