FastTyrcordAnimatedLogo constructor

const FastTyrcordAnimatedLogo({
  1. Key? key,
  2. Duration animationDuration = const Duration(milliseconds: 600),
  3. Curve animationCurve = Curves.easeInOut,
  4. Color color = const Color(0xFF434343),
  5. Size size = const Size(64, 64),
})

Constructor for creating a FastTyrcordAnimatedLogo.

Implementation

const FastTyrcordAnimatedLogo({
  super.key,
  this.animationDuration = const Duration(milliseconds: 600),
  this.animationCurve = Curves.easeInOut,
  this.color = const Color(0xFF434343),
  this.size = const Size(64, 64),
});