Files
cherrypick/benchmark_cherrypick/lib/scenarios/service.dart

6 lines
130 B
Dart
Raw Normal View History

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