© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
sarfaraz ahmed
Curios
how to achieve something like this using freezed
class Todo { Todo( this.description, { this.completed = false, String? id, }) : id = id ?? _uuid.v4();
final String id; final String description; final bool completed; }