ChannelLocationEmpty.deserialize constructor

ChannelLocationEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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