User copyWith({int? id, String? name, int? age}) { return User( id: id ?? this.id, name: name ?? this.name, age: age ?? this.age, ); }