LiquidLoadingBar constructor

LiquidLoadingBar({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. required Color color,
  5. String? tag,
  6. Color? borderColor,
  7. Color? textColor,
})

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;
}