HelpGetDeepLinkInfo.deserialize constructor

HelpGetDeepLinkInfo.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

  // Construct [HelpGetDeepLinkInfo] object.
  final returnValue = HelpGetDeepLinkInfo(
    path: path,
  );

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