Use TupleKey(ObjectKey-AccountId-UserName) to store data to hive
(cherry picked from commit e0ace535d5f3af71eb13598d92524caf2c6d9bbf)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
|
||||
import 'package:jmap_dart_client/jmap/account_id.dart';
|
||||
import 'package:jmap_dart_client/jmap/core/user_name.dart';
|
||||
import 'package:model/account/personal_account.dart';
|
||||
|
||||
extension PersonalAccountExtension on PersonalAccount {
|
||||
|
||||
PersonalAccount fromAccount({
|
||||
required AccountId accountId,
|
||||
required String apiUrl,
|
||||
required UserName userName,
|
||||
}) {
|
||||
return PersonalAccount(
|
||||
id,
|
||||
authenticationType,
|
||||
isSelected: isSelected,
|
||||
accountId: accountId,
|
||||
apiUrl: apiUrl,
|
||||
userName: userName);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user