MessagesDeclineUrlAuth.deserialize constructor

MessagesDeclineUrlAuth.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory MessagesDeclineUrlAuth.deserialize(BinaryReader reader) {
  // Read [MessagesDeclineUrlAuth] fields.
  final url = reader.readString();

  // Construct [MessagesDeclineUrlAuth] object.
  final returnValue = MessagesDeclineUrlAuth(url: url);

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