InputChannelEmpty.deserialize constructor

InputChannelEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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