TF-934 Add interactor get email by id

This commit is contained in:
dab246
2022-11-04 21:58:55 +07:00
committed by Dat H. Pham
parent a4eb2ffbec
commit 4c9beb7526
8 changed files with 107 additions and 0 deletions
@@ -335,4 +335,9 @@ class ThreadRepositoryImpl extends ThreadRepository {
}
}
}
@override
Future<PresentationEmail> getEmailById(AccountId accountId, EmailId emailId, {Properties? properties}) {
return mapDataSource[DataSourceType.network]!.getEmailById(accountId, emailId, properties: properties);
}
}