getOffset method
Implementation
Offset getOffset(animation) {
switch (variant) {
case NextFadeInVariant.fadeInTop:
case NextFadeInVariant.fadeInBottom:
return Offset(0, animation);
case NextFadeInVariant.fadeInLeft:
case NextFadeInVariant.fadeInRight:
return Offset(animation, 0);
default:
return const Offset(0, 0);
}
}