viewService<T> method

  1. @override
Future<T> viewService<T>(
  1. String service,
  2. Future<T> f(
    1. ServiceScope scope
    )
)
override

ViewService retrieves a service-specific scope.

Implementation

@override
Future<T> viewService<T>(String service, Future<T> Function(ServiceScope scope) f) async {
  return await f(NullScope());
}