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