LoadingWidget constructor
const
LoadingWidget({
- Key? key,
- StringEnum? loadingText = StringEnum.loading,
- double size = 50.0,
- Color color = Colors.blue,
- required String scene,
Implementation
const LoadingWidget({
super.key,
this.loadingText = StringEnum.loading,
this.size = 50.0,
this.color = Colors.blue,
required this.scene,
});