ReportResultReported.deserialize constructor

ReportResultReported.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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