FCRotatingMorph constructor

const FCRotatingMorph({
  1. Key? key,
  2. Color loaderColor = kPrimaryColor,
  3. Duration duration = const Duration(milliseconds: 700),
  4. double loaderSize = 20,
})

Implementation

const FCRotatingMorph({
  Key? key,
  this.loaderColor = kPrimaryColor,
  this.duration = const Duration(milliseconds: 700),
  this.loaderSize = 20,
}) : super(key: key);