AccountInitPasskeyRegistration.deserialize constructor

AccountInitPasskeyRegistration.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory AccountInitPasskeyRegistration.deserialize(BinaryReader reader) {
  // Construct [AccountInitPasskeyRegistration] object.
  final returnValue = AccountInitPasskeyRegistration();

  // Now return the deserialized [AccountInitPasskeyRegistration].
  return returnValue;
}