value<T> function

Factory<T> value<T>(
  1. T instance
)

Implementation

Factory<T> value<T>(T instance) {
  return (fabric) => instance;
}