InputChannelEmpty.deserialize constructor
InputChannelEmpty.deserialize(
- BinaryReader reader
Deserialize.
Implementation
factory InputChannelEmpty.deserialize(BinaryReader reader) {
// Construct [InputChannelEmpty] object.
final returnValue = InputChannelEmpty();
// Now return the deserialized [InputChannelEmpty].
return returnValue;
}