250x250
Notice
Recent Posts
Recent Comments
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- findByIdAndDelete
- Find
- jsonwebtoken
- MYSQL
- mongodb
- Nodejs
- double quote
- mongoose
- TailwindCSS
- nginx
- await
- sequelize
- AWS
- atlas
- async
- single quote
- css
- Node.js
- wil
- flutter
- til
- JavaScript
- Express
- https
- moment
- RDS
- EC2
- clipBehavior
- TypeScript
- certbot
Link
Archives
기억 휘발 방지소
[Flutter] freezed에서 copyWith 본문
728x90
반응형
Flutter에서 freezed를 사용해서 클래스를 만들면 setter를 사용할 수 없다.
import 'package:freezed_annotation/freezed_annotation.dart';
part 'user.freezed.dart';
part 'user.g.dart';
@freezed
class User with _$User {
const factory User({
required String name,
required String password,
}) = _User;
factory User.fromJson(Map<String, dynamic> json) => _$UserFromJson(json);
}
freezed에서 자동으로 생성해주는 copyWith 메서드를 사용하면 setter처럼 값을 업데이트 시킬 수 있다.
newUser = user.copyWith(name: nameController.text);
참고
728x90
반응형
'Flutter' 카테고리의 다른 글
[Flutter] Dio에서 timeout 설정 (0) | 2024.06.19 |
---|---|
[Flutter] dart run build runner (0) | 2024.05.27 |
[Flutter] 안드로이드 인터넷 설정 - AndroidManifest.xml (0) | 2024.04.17 |
[Flutter] double quote를 기본으로 설정하기 (0) | 2024.04.06 |
[Flutter] Stack의 범위를 넘어가는 위젯의 Gesture 감지 (0) | 2023.09.10 |