startFadeInAnimation method

void startFadeInAnimation({
  1. double? from,
})

Implementation

void startFadeInAnimation({double? from}) {
  animationController?.reset();
  animationController?.forward(from: from);
}