RestrictionInfo constructor

RestrictionInfo(
  1. {String? description,
  2. int? endAt,
  3. RestrictionType restrictionType = RestrictionType.muted}
)

Implementation

RestrictionInfo({
  this.description,
  this.endAt,
  this.restrictionType = RestrictionType.muted,
});