Address constructor

const Address({
  1. String? street,
  2. String? city,
  3. String? state,
  4. String? country,
  5. String? zipCode,
  6. double? latitude,
  7. double? longitude,
})

Implementation

const factory Address({
  String? street,
  String? city,
  String? state,
  String? country,
  String? zipCode,
  double? latitude,
  double? longitude,
}) = _Address;