isFrozen property

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

Whether the channel is frozen.

Implementation

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

Implementation

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