setLabelForAccount function
Implementation
Future<void> setLabelForAccount(
{required int accountIndex, required String label}) async {
await compute(
_setLabelForAccount, {'accountIndex': accountIndex, 'label': label});
//await store();
}