ubuntu_service 0.4.0
ubuntu_service: ^0.4.0 copied to clipboard
Simple service locator API based on GetIt.
import 'package:ubuntu_service/ubuntu_service.dart';
class MyService {}
void main() {
registerService<MyService>(MyService.new);
somewhereElse();
}
void somewhereElse() {
final service = getService<MyService>();
// ignore: avoid_print
print(service);
}
copied to clipboard