For each record component, an accessor method will be available that has the name of that component.
You use these to access the values of components.
record Dog(String name) {}~record Dog(String name) {}
class Main {
void main() {
var dog = new Dog("Hunter");
// .name() accessor is available
String name = dog.name();
IO.println(name);
}
}