リスト 7.2


lib/common/age.dart

// リスト 7.2
class Age {
  Age({required this.value});
  int value;
  void increment() => value++;
}