Config constructor

const Config({
  1. bool? enabled,
  2. String? usage,
  3. Map<String, String>? writeBackValues,
  4. String? writeBackValue,
})

Creates an A2UI configuration overlay.

Implementation

const Config({
  this.enabled,
  this.usage,
  this.writeBackValues,
  this.writeBackValue,
});