DocumentAttributeAnimated.deserialize constructor

DocumentAttributeAnimated.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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