AccountResetPasswordOk.deserialize constructor

AccountResetPasswordOk.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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