BooleanPropertySchema constructor

BooleanPropertySchema({
  1. String? title,
  2. String? description,
  3. bool? defaultValue,
  4. AcpJsonObject? meta,
})

Creates a BooleanPropertySchema value.

Implementation

BooleanPropertySchema({
  this.title,
  this.description,
  this.defaultValue,
  this.meta,
});