mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
6 lines
130 B
Dart
6 lines
130 B
Dart
abstract class Service {
|
|
final dynamic value;
|
|
final Service? dependency;
|
|
Service({required this.value, this.dependency});
|
|
}
|