LoadingWidget constructor

const LoadingWidget({
  1. Key? key,
  2. StringEnum? loadingText = StringEnum.loading,
  3. double size = 50.0,
  4. Color color = Colors.blue,
  5. required String scene,
})

Implementation

const LoadingWidget({
  super.key,
  this.loadingText = StringEnum.loading,
  this.size = 50.0,
  this.color = Colors.blue,
  required this.scene,
});