AuthCodeTypeMissedCall.deserialize constructor

AuthCodeTypeMissedCall.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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