LoadableView constructor
Implementation
const LoadableView({
@required this.child,
@required this.isLoading,
this.padding,
this.backgroundColor = Colors.white,
this.indicatorColor,
}) : assert(child != null),
assert(isLoading != null);