Certification constructor

Certification({
  1. String? authority,
  2. String? code,
  3. String? name,
})

Implementation

Certification({
  this.authority,
  this.code,
  this.name,
});