Module constructor

const Module({
  1. String? id,
  2. bool enabled = true,
})

Implementation

const Module({
  this.id,
  this.enabled = true,
});