Create an instance from a dictionary.
(cls, data: Dict[str, Any])
| 612 | |
| 613 | @classmethod |
| 614 | def from_dict(cls, data: Dict[str, Any]): |
| 615 | """Create an instance from a dictionary.""" |
| 616 | return cls(**data) |
| 617 | |
| 618 | def to_dict(self) -> Dict[str, Any]: |
| 619 | """Convert to dictionary.""" |
nothing calls this directly
no outgoing calls
no test coverage detected