BaseViewLoading constructor

const BaseViewLoading({
  1. required Widget? child,
  2. required bool? isLoading,
  3. Color backgroundColor = Colors.grey,
  4. double? paddingBottom,
  5. List<Color>? colorsIndicator,
})

Implementation

const BaseViewLoading(
    {required this.child,
    required this.isLoading,
    this.backgroundColor = Colors.grey,
    this.paddingBottom,
    this.colorsIndicator});