TextEmpty.deserialize constructor

TextEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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