Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kackogut authored and JElgar committed Aug 24, 2024
1 parent 51cb031 commit 21adce6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/ui/views/delete_account/delete_account_state.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ part 'delete_account_state.freezed.dart';

@freezed
class DeleteAccountState with _$DeleteAccountState {
const factory DeleteAccountState(
{@Default('') String name,
@Default(false) bool isNameValid}) = _DeleteAccountState;
const factory DeleteAccountState({
@Default('') String name,
@Default(false) bool isNameValid,
}) = _DeleteAccountState;
}

0 comments on commit 21adce6

Please sign in to comment.