assetAnimated static method
Implementation
static Widget assetAnimated(
{required String assetName,
String? packageName,
double? width,
double? height,
BoxFit? fit,
AnimationController? controller,
bool? repeat,
bool? reverse}) {
return Lottie.asset(GtdString.pathForAsset(packageName, assetName),
controller: controller, repeat: repeat, reverse: reverse, width: width, height: height, fit: fit);
}