getSendEmailsFromCache method
Implementation
Future<List<String>> getSendEmailsFromCache() async {
final source = await saveManager.getString(
sendEmailsKey,
);
if (isNotNullOrEmpty(source)) {
_sendEmails = source!.split('\n');
}
_selectedSendEmail = await saveManager.getString(
selectedEmailsKey,
);
return _sendEmails;
}