AlwaysAbstain.deserialize constructor

AlwaysAbstain.deserialize(
  1. CborListValue<CborObject> cbor
)

Implementation

factory AlwaysAbstain.deserialize(CborListValue cbor) {
  DRepType.deserialize(cbor.elementAt<CborIntValue>(0),
      validate: DRepType.alwaysAbstain);
  return AlwaysAbstain();
}