Files
workavia-mail-front/lib/features/login/data/datasource/account_datasource.dart
T
dab246 876cc368b0 Use TupleKey(ObjectKey-AccountId-UserName) to store data to hive
(cherry picked from commit e0ace535d5f3af71eb13598d92524caf2c6d9bbf)
2023-05-08 13:03:51 +07:00

9 lines
264 B
Dart

import 'package:model/account/personal_account.dart';
abstract class AccountDatasource {
Future<PersonalAccount> getCurrentAccount();
Future<void> setCurrentAccount(PersonalAccount newCurrentAccount);
Future<void> deleteCurrentAccount(String accountId);
}