controller property

AnimationController? get controller

The underlying AnimationController. Use only if you know what you're doing!

Implementation

AnimationController? get controller {
  assert(state != null,
      'Controller not attached to any FlipCard. Did you forget to pass the controller to the FlipCard?');
  return state!.controller;
}