HelpGetConfig.deserialize constructor

HelpGetConfig.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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