AccountResetWebAuthorizations.deserialize constructor

AccountResetWebAuthorizations.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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