suppliedBy abstract method
Supplies a pod instance using a supplier
function.
The supplier
receives a SpecContext for resolving dependencies.
Example
spec.suppliedBy((ctx) => MyService(ctx.get(Logger.classType)));
Implementation
Spec<T> suppliedBy(T Function(SpecContext context) supplier);