AccountGetAuthorizations.deserialize constructor

AccountGetAuthorizations.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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