AuthCodeTypeFlashCall.deserialize constructor

AuthCodeTypeFlashCall.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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