LoadingEvent constructor

LoadingEvent({
  1. required bool isLoading,
  2. bool hasBlurBackground = true,
  3. dynamic message,
})

Implementation

LoadingEvent({
  required this.isLoading,
  this.hasBlurBackground = true,
  this.message,
});