LangPackStringDeleted.deserialize constructor

LangPackStringDeleted.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory LangPackStringDeleted.deserialize(BinaryReader reader) {
  // Read [LangPackStringDeleted] fields.
  final key = reader.readString();

  // Construct [LangPackStringDeleted] object.
  final returnValue = LangPackStringDeleted(
    key: key,
  );

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