SchemaModel constructor

const SchemaModel({
  1. int id = 1,
  2. bool enabled = true,
  3. List<int> samples = const <int>[1, 2],
})

Implementation

const SchemaModel({
  this.id = 1,
  this.enabled = true,
  this.samples = const <int>[1, 2],
});