AccountDeleteAutoSaveExceptions.deserialize constructor

AccountDeleteAutoSaveExceptions.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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