CircularLoadingView constructor

const CircularLoadingView({
  1. Key? key,
  2. String? message,
  3. required double progress,
})

Implementation

const CircularLoadingView({
  Key? key,
  this.message,
  required this.progress,
}) : super(key: key);