of static method

Create an instance of InputController from a component.

Implementation

static InputController of(Component input) {
  if (input is Input) {
    return InputController(input: input.element as HTMLElement);
  }

  throw Exception("Input controller can't be attached to this component");
}