LiquidLoadingBar constructor
LiquidLoadingBar({})
Implementation
LiquidLoadingBar(
{Key? key,
required this.width,
required this.height,
required this.color,
this.tag,
this.borderColor,
this.textColor})
: super(key: key) {
textColor ??= Get.find<AppColors>().textColor;
borderColor ??= Get.find<AppColors>().textColor;
}