MessageActionEmpty.deserialize constructor

MessageActionEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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