cdnUuid property

Uint8List cdnUuid
inherited

The cdn uuid if it exists

Implementation

Uint8List get cdnUuid => _cdnUuid;
void cdnUuid=(Uint8List value)
inherited

Change the _cdnUuid field value. cdnUuidChanged will be invoked only if the field's value has changed.

Implementation

set cdnUuid(Uint8List value) {
  if (listEquals(_cdnUuid, value)) {
    return;
  }
  Uint8List from = _cdnUuid;
  _cdnUuid = value;
  if (hasValidated) {
    cdnUuidChanged(from, value);
  }
}