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

Simple service locator API based on GetIt.

Ubuntu Service #

pub license: MPL CI codecov

Simple service locator API based on GetIt.

import 'package:ubuntu_service/ubuntu_service.dart';

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

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