LoadingModalOptions constructor

const LoadingModalOptions(
  1. {required bool isVisible,
  2. Color backgroundColor = const Color.fromRGBO(0, 0, 0, 0.5),
  3. Color displayColor = Colors.black}
)

Constructs a LoadingModalOptions object with the given configuration.

Implementation

const LoadingModalOptions({
  required this.isVisible,
  this.backgroundColor = const Color.fromRGBO(0, 0, 0, 0.5),
  this.displayColor = Colors.black,
});