StackWithProgress constructor
const
StackWithProgress({})
Implementation
const StackWithProgress({
Key? key,
required List<Widget> children,
bool? isLoading,
AlignmentGeometry? alignment,
StackFit? fit,
}) : _children = children,
_isLoading = isLoading ?? false,
_aligment = alignment ?? Alignment.center,
_fit = fit ?? StackFit.expand,
super(key: key);