bind<T> abstract method

Future<T> bind<T>(
  1. EngineContext context,
  2. T instance
)

Binds data from the request context to the given instance.

context - The context of the engine containing request data. instance - The instance to which the data should be bound.

Implementation

Future<T> bind<T>(EngineContext context, T instance);