BoundaryModel constructor

BoundaryModel({
  1. String? code,
  2. String? name,
  3. String? label,
  4. String? latitude,
  5. String? longitude,
  6. String? materializedPath,
  7. String? tenantId,
  8. int? boundaryNum,
  9. int? rowVersion,
  10. List<BoundaryModel> children = const [],
  11. String? boundaryType,
  12. AuditDetails? auditDetails,
  13. bool? isDeleted = false,
})

Implementation

BoundaryModel({
  this.code,
  this.name,
  this.label,
  this.latitude,
  this.longitude,
  this.materializedPath,
  this.tenantId,
  this.boundaryNum,
  this.rowVersion,
  this.children = const [],
  this.boundaryType,
  super.auditDetails,
  super.isDeleted = false,
}) : super();