FxTextLiquidFill constructor

FxTextLiquidFill({
  1. Key? key,
  2. required String text,
  3. TextStyle? textStyle,
  4. Duration? loadDuration,
  5. Duration? waveDuration,
  6. double? boxHeight,
  7. double? boxWidth,
  8. Color? boxBackgroundColor,
  9. Color? waveColor,
})

Implementation

FxTextLiquidFill(
    {Key? key,
    required this.text,
    this.textStyle,
    this.loadDuration,
    this.waveDuration,
    this.boxHeight,
    this.boxWidth,
    this.boxBackgroundColor,
    this.waveColor})
    : super(key: key);