Address constructor

const Address({
  1. required String street,
  2. required String city,
  3. String code = '',
  4. required Country country,
  5. double latitude = 0.0,
  6. double longitude = 0.0,
})

Implementation

const Address(
    {required this.street,
    required this.city,
    this.code = '',
    required this.country,
    this.latitude = 0.0,
    this.longitude = 0.0});