EmptyStateView constructor

const EmptyStateView({
  1. Key? key,
  2. String title = 'No active loans found',
  3. String subtitle = 'Apply for a loan to get started.',
  4. IconData icon = Icons.account_balance_wallet_outlined,
})

Implementation

const EmptyStateView({
  super.key,
  this.title = 'No active loans found',
  this.subtitle = 'Apply for a loan to get started.',
  this.icon = Icons.account_balance_wallet_outlined,
});