OnceOrganisation constructor

const OnceOrganisation({
  1. String? name,
  2. int? id,
})

Implementation

const OnceOrganisation({
  this.name,
  this.id,
});