Address constructor

Address(
  1. String addressName,
  2. String region1depthName,
  3. String region2depthName,
  4. String region3depthName,
  5. String? region3depthHName,
  6. String? hCode,
  7. String? bCode,
  8. String mountainYn,
  9. String mainAddressNo,
  10. String subAddressNo,
  11. String? zipCode,
  12. double? x,
  13. double? y,
)

Implementation

Address(
    this.addressName,
    this.region1depthName,
    this.region2depthName,
    this.region3depthName,
    this.region3depthHName,
    this.hCode,
    this.bCode,
    this.mountainYn,
    this.mainAddressNo,
    this.subAddressNo,
    this.zipCode,
    double? x,
    double? y)
    : super(x, y);