MessageActionSetChatTheme.deserialize constructor
MessageActionSetChatTheme.deserialize(
- BinaryReader reader
Deserialize.
Implementation
factory MessageActionSetChatTheme.deserialize(BinaryReader reader) {
// Read [MessageActionSetChatTheme] fields.
final theme = reader.readObject() as ChatThemeBase;
// Construct [MessageActionSetChatTheme] object.
final returnValue = MessageActionSetChatTheme(theme: theme);
// Now return the deserialized [MessageActionSetChatTheme].
return returnValue;
}