deserialize method

  1. @override
void deserialize(
  1. SerializableInput input
)
override

Interface for intput serialization.

Implementation

@override
void deserialize(SerializableInput input) {
  formatId = deserializeString(input);
  key = deserializeStringBytes(input);
  if (formatId != 'ssh-ed25519') throw FormatException(formatId);
}