mirror of
https://github.com/smmarty/friflex_flutter_starter.git
synced 2025-12-22 09:30:45 +00:00
refactor(app): Форматирование
This commit is contained in:
@@ -6,7 +6,6 @@ import 'package:friflex_starter/features/profile/domain/repository/i_profile_rep
|
||||
///
|
||||
/// {@endtemplate}
|
||||
final class ProfileRepository implements IProfileRepository {
|
||||
|
||||
ProfileRepository({required this.httpClient});
|
||||
final IHttpClient httpClient;
|
||||
|
||||
|
||||
@@ -8,7 +8,6 @@ sealed class ProfileEvent extends Equatable {
|
||||
}
|
||||
|
||||
final class ProfileFetchProfileEvent extends ProfileEvent {
|
||||
|
||||
const ProfileFetchProfileEvent({required this.id});
|
||||
final String id;
|
||||
|
||||
|
||||
@@ -12,7 +12,6 @@ final class ProfileInitialState extends ProfileState {}
|
||||
final class ProfileWaitingState extends ProfileState {}
|
||||
|
||||
final class ProfileErrorState extends ProfileState {
|
||||
|
||||
const ProfileErrorState({
|
||||
required this.message,
|
||||
required this.error,
|
||||
@@ -27,7 +26,6 @@ final class ProfileErrorState extends ProfileState {
|
||||
}
|
||||
|
||||
final class ProfileSuccessState extends ProfileState {
|
||||
|
||||
const ProfileSuccessState({required this.data});
|
||||
final Object data;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user