InputReportReasonOther.deserialize constructor

InputReportReasonOther.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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