cashflowChartComponent method

Widget cashflowChartComponent({
  1. bool solo = true,
})

Render a donut chart showing the user's gross expense and income within a time period.

This component provides a visual representation of cash inflow and outflow. It helps users understand their overall financial position.

solo determines whether this component should be rendered as a standalone view.

Implementation

Widget cashflowChartComponent({
  bool solo = true,
}) =>
    getView(
      LuneViewType.cashflowChart,
      solo: solo,
    );