ProprietorAddress constructor

ProprietorAddress({
  1. required String line1,
  2. String? line2,
  3. String? line3,
  4. String? line4,
  5. String? line5,
  6. required String postcode,
})

Implementation

ProprietorAddress({
  required this.line1,
  this.line2,
  this.line3,
  this.line4,
  this.line5,
  required this.postcode,
});