LegalMenu constructor

LegalMenu({
  1. int? id,
  2. String? uuid,
  3. int? order,
  4. String? internalTitle,
  5. String? label,
  6. dynamic usernameId,
  7. List<LegalMenuSub>? legals,
})

Implementation

LegalMenu({
  this.id,
  this.uuid,
  this.order,
  this.internalTitle,
  this.label,
  this.usernameId,
  this.legals,
});