IR5Address constructor

const IR5Address({
  1. required String Attention,
  2. required String Street,
  3. required String ZipCode,
  4. required String City,
  5. required String Country,
})

Implementation

const IR5Address({
  required this.Attention,
  required this.Street,
  required this.ZipCode,
  required this.City,
  required this.Country,
});