LineSpinner constructor

const LineSpinner({
  1. Key? key,
  2. Color color = Colors.orange,
  3. String size = 'medium',
  4. String? text,
  5. Color? textColor,
  6. double? customSize,
})

Implementation

const LineSpinner(
    {Key? key,
    this.color = Colors.orange,
    this.size = 'medium',
    this.text,
    this.textColor,
    this.customSize})
    : super(key: key);