Entity constructor

Entity({
  1. String? name,
  2. String? state,
  3. String? instance,
  4. int? version,
  5. Export? export,
})

Implementation

Entity({
  this.name,
  this.state,
  this.instance,
  this.version,
  this.export});