Attribute constructor

Attribute({
  1. dynamic internal,
  2. dynamic readonly,
  3. Required? required,
  4. dynamic hidden,
  5. String? sId,
  6. String? id,
})

Implementation

Attribute(
    {this.internal,
      this.readonly,
      this.required,
      this.hidden,
      this.sId,
      this.id});