abstract class Service { final dynamic value; final Service? dependency; Service({required this.value, this.dependency}); }