BlockedLoadableView constructor

const BlockedLoadableView({
  1. required Widget child,
  2. required bool isLoading,
  3. Color indicatorColor = Colors.white,
  4. Key? key,
})

Implementation

const BlockedLoadableView({
  required this.child,
  required this.isLoading,
  this.indicatorColor = Colors.white,
  super.key,
});