Brand constructor

Brand({
  1. String? applicationTitle,
  2. String? name,
  3. bool? orgInternalOnly,
  4. String? supportEmail,
})

Implementation

Brand({
  this.applicationTitle,
  this.name,
  this.orgInternalOnly,
  this.supportEmail,
});