isFrozen property
- @JsonKey(name: 'freeze')
Whether the channel is frozen.
Implementation
@JsonKey(name: 'freeze')
bool get isFrozen {
checkUnsupportedAction();
return _isFrozen;
}
Implementation
set isFrozen(value) {
checkUnsupportedAction();
_isFrozen = value;
}