App constructor

App({
  1. String? id,
  2. String? key,
  3. String? name,
  4. String? description,
  5. String? state,
})

Implementation

App({
  this.id,
  this.key,
  this.name,
  this.description,
  this.state,
});