ServicePath<T extends Portable> constructor

ServicePath<T extends Portable>({
  1. required String path,
  2. required Portable factory(),
  3. String? identity,
  4. ApiScope? permissions,
})

Implementation

ServicePath({
  required this.path,
  required this.factory,
  this.identity,
  this.permissions,
});