13 lines
317 B
Dart
13 lines
317 B
Dart
part of 'profile_bloc.dart';
|
|
|
|
@freezed
|
|
class ProfileState with _$ProfileState {
|
|
factory ProfileState({
|
|
@Default(false) bool isSelfProfile,
|
|
@Default(null) Conversation? conversation,
|
|
@Default('') String jid,
|
|
@Default('') String avatarUrl,
|
|
@Default('') String displayName,
|
|
}) = _ProfileState;
|
|
}
|