NHCustomLoading constructor

NHCustomLoading({
  1. Key? key,
  2. double? height,
  3. required double radius,
  4. Color? color,
  5. Widget? loadingWidget,
})

Implementation

NHCustomLoading({
  Key? key,
  this.height,
  required this.radius,
  this.color,
  this.loadingWidget,
}) : super(key: key);