App constructor

App({
  1. String? id,
  2. String? name,
  3. String? description,
  4. String? icon,
  5. Map<String, AppSchemaField>? schema,
})

Implementation

App({
  this.id,
  this.name,
  this.description,
  this.icon,
  this.schema,
});