ratatui_toolkit/widgets/markdown_widget/state/source_state/constructors/
new.rs

1//! Constructor for SourceState.
2
3use crate::widgets::markdown_widget::state::source_state::SourceState;
4
5impl SourceState {
6    /// Create a new source state with no source.
7    pub fn new() -> Self {
8        Self {
9            source: None,
10            line_count: 0,
11        }
12    }
13}