
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
factory Memo.fromJson(json) {
return Memo(content: json['content'], isPinned: json['isPinned'] ?? false);
}
}
여기서요 선생님께서 ?? 하는 이유가 isPinned이 값이 없다고 하셨는데 저희가
class Memo {
Memo({
required this.content,
this.isPinned = false,
});
String content;
bool isPinned; 이렇게
false라고 주었는데 다시 ?? false를 해주는 것이 잘 이해가 가지 않습니다 도움 부탁드립니다.
