UIBlockDefaultLoader constructor

const UIBlockDefaultLoader({
  1. Key? key,
  2. Color backgroundColor = Colors.transparent,
  3. Animation<Color> valueColor = const AlwaysStoppedAnimation<Color>(Colors.blueAccent),
})

Implementation

const UIBlockDefaultLoader({
  this.key,
  this.backgroundColor = Colors.transparent,
  this.valueColor = const AlwaysStoppedAnimation<Color>(Colors.blueAccent),
}) : super(key: key);