TF-2064 Handle limit storage to show warning banner

(cherry picked from commit 3e36cebd5cbe880f9832c62463e71979e15e1741)
This commit is contained in:
dab246
2023-08-04 21:43:33 +07:00
committed by Dat Vu
parent 3aa2b91a89
commit a2875ea921
17 changed files with 78 additions and 293 deletions
@@ -1,6 +1,6 @@
import 'package:jmap_dart_client/jmap/account_id.dart';
import 'package:tmail_ui_user/features/quotas/domain/model/quotas_response.dart';
import 'package:jmap_dart_client/jmap/quotas/quota.dart';
abstract class QuotasDataSource {
Future<QuotasResponse> getQuotas(AccountId accountId);
Future<List<Quota>> getQuotas(AccountId accountId);
}