cashflowComponent method

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

Render an interactive breakdown of the user's cashflow within a time period.

The user will be able to drill down on Income and Expenses to see the related transactions. This is designed to be a full page view and ideally should not be mixed with other components.

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

Implementation

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