IntegerPropertySchema constructor

IntegerPropertySchema({
  1. String? title,
  2. String? description,
  3. AcpInt64? minimum,
  4. AcpInt64? maximum,
  5. AcpInt64? defaultValue,
  6. AcpJsonObject? meta,
})

Creates a IntegerPropertySchema value.

Implementation

IntegerPropertySchema({
  this.title,
  this.description,
  this.minimum,
  this.maximum,
  this.defaultValue,
  this.meta,
});