Channel constructor

Channel({
  1. dynamic href,
  2. String? name,
  3. dynamic role,
})

Implementation

Channel({
  this.href,
  this.name,
  this.role,
});