(cls, json_string)
| 2033 | """ |
| 2034 | @classmethod |
| 2035 | def de_json(cls, json_string): |
| 2036 | if json_string is None: return None |
| 2037 | obj = cls.check_json(json_string, dict_copy=False) |
| 2038 | return cls(**obj) |
| 2039 | |
| 2040 | def __init__(self, value, emoji, **kwargs): |
| 2041 | self.value: int = value |
nothing calls this directly
no test coverage detected