RoadAddress constructor

RoadAddress(
  1. String addressName,
  2. String region1depthName,
  3. String region2depthName,
  4. String region3depthName,
  5. String roadName,
  6. String undergroundYn,
  7. String mainBuildingNo,
  8. String subBuildingNo,
  9. String buildingName,
  10. String zoneNo,
  11. double? x,
  12. double? y,
)

Implementation

RoadAddress(
    this.addressName,
    this.region1depthName,
    this.region2depthName,
    this.region3depthName,
    this.roadName,
    this.undergroundYn,
    this.mainBuildingNo,
    this.subBuildingNo,
    this.buildingName,
    this.zoneNo,
    double? x,
    double? y)
    : super(x, y);