IntegerPropertySchema constructor

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

Implementation

IntegerPropertySchema({
  this.title,
  this.description,
  this.minimum,
  this.maximum,
  this.defaultValue,
  AcpJsonMap? meta,
}) : meta = meta == null ? null : deepFreezeAcpJsonMap(meta!);