```dart final X _x = ...; X get x => _x; ``` is functionally the same to ```dart final x = ...; ```
is functionally the same to