AccountResendPasswordEmail.deserialize constructor

AccountResendPasswordEmail.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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