TF-571 Get user's profile directly in Session
This commit is contained in:
committed by
Dat H. Pham
parent
a48cd35d4f
commit
7d32e80bc1
@@ -1,15 +1,13 @@
|
||||
|
||||
import 'package:equatable/equatable.dart';
|
||||
import 'package:jmap_dart_client/jmap/account_id.dart';
|
||||
import 'package:model/model.dart';
|
||||
import 'package:jmap_dart_client/jmap/core/session/session.dart';
|
||||
|
||||
class ManageAccountArguments with EquatableMixin {
|
||||
|
||||
final AccountId? accountId;
|
||||
final UserProfile? userProfile;
|
||||
final Session? session;
|
||||
|
||||
ManageAccountArguments(this.accountId, this.userProfile);
|
||||
ManageAccountArguments(this.session);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [accountId, userProfile];
|
||||
List<Object?> get props => [session];
|
||||
}
|
||||
Reference in New Issue
Block a user