ubuntu_service 0.2.4 copy "ubuntu_service: ^0.2.4" to clipboard
ubuntu_service: ^0.2.4 copied to clipboard

Simple service locator API based on GetIt.

example/main.dart

import 'package:ubuntu_service/ubuntu_service.dart';

class MyService {}

void main() {
  registerService<MyService>(MyService.new);

  somewhereElse();
}

void somewhereElse() {
  final service = getService<MyService>();
  print(service);
}