SDG constructor

SDG(
  1. {int? number,
  2. String? name,
  3. String? image,
  4. String? link}
)

Implementation

SDG({
  this.number,
  this.name,
  this.image,
  this.link,
});