FCRotatingSquare constructor

const FCRotatingSquare({
  1. Key? key,
  2. Duration duration = const Duration(milliseconds: 1000),
  3. double loaderSize = 30,
  4. Color loaderColor = Colors.white,
})

Implementation

const FCRotatingSquare({
  Key? key,
  this.duration = const Duration(milliseconds: 1000),
  this.loaderSize = 30,
  this.loaderColor = Colors.white,
}) : super(key: key);