RTLoadingOverlay constructor

const RTLoadingOverlay({
  1. Key? key,
  2. Widget? indicator,
  3. bool? loading,
  4. Widget? child,
  5. bool? isCover,
})

Implementation

const RTLoadingOverlay({
  super.key,
  this.indicator,
  this.loading,
  this.child,
  this.isCover,
});