This commit is contained in:
unknown 2018-06-28 13:05:16 -07:00
parent a5c34e8ec7
commit 7b4c4a53b9
1 changed files with 2 additions and 1 deletions

View File

@ -100,7 +100,8 @@ abstract class AppState implements Built<AppState, AppStateBuilder> {
@override
String toString() {
return 'Is Loading: ${this.isLoading}, Invoice: ${this.invoiceUIState.selected}';
return '';
//return 'Is Loading: ${this.isLoading}, Invoice: ${this.invoiceUIState.selected}';
//return this.invoiceUIState.selected.toString();
}
}