RiskSection constructor

RiskSection({
  1. String? title,
  2. String? description,
  3. String? recommendation,
  4. List<RiskLocation>? location,
})

Implementation

RiskSection({
  this.title,
  this.description,
  this.recommendation,
  this.location,
});