controller property

AnimationController? get controller

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;
}