isFrozen property

  1. @JsonKey(name: 'freeze')
bool get isFrozen

Whether the channel is frozen.

Implementation

@JsonKey(name: 'freeze')
bool get isFrozen {
  checkUnsupportedAction();
  return _isFrozen;
}
set isFrozen (dynamic value)

Implementation

set isFrozen(value) {
  checkUnsupportedAction();
  _isFrozen = value;
}