Configuration constructor

Configuration({
  1. ConfigurationLinks? links,
  2. DateTime? createdAt,
  3. String? description,
  4. String? id,
  5. ConfigurationMemberType? memberType,
  6. String? name,
  7. ConfigurationOperationType? operationType,
  8. ConfigurationPlaceType? placeType,
  9. ConfigurationReportType? reportType,
  10. String? type,
  11. DateTime? updatedAt,
})

Returns a new Configuration instance.

Implementation

Configuration({
  this.links,
  this.createdAt,
  this.description,
  this.id,
  this.memberType,
  this.name,
  this.operationType,
  this.placeType,
  this.reportType,
  this.type,
  this.updatedAt,
});