(cls, json_string)
| 961 | |
| 962 | @classmethod |
| 963 | def de_json(cls, json_string): |
| 964 | if json_string is None: return None |
| 965 | obj = cls.check_json(json_string) |
| 966 | return cls(**obj) |
| 967 | |
| 968 | def __init__(self, data, button_text, **kwargs): |
| 969 | self.data: str = data |
nothing calls this directly
no test coverage detected