title property
String
get
title
Implementation
String get title {
switch (this) {
case WalletChangeType.expenses:
return "Add Expenses";
case WalletChangeType.salary:
return "Give Salary To Workers";
case WalletChangeType.withdrawal:
return "Withdraw Money";
case WalletChangeType.deposit:
return "Deposit Money";
}
}