ALoadingOverlay constructor

const ALoadingOverlay({
  1. Key? key,
  2. required bool loading,
  3. required Widget content,
})

Implementation

const ALoadingOverlay({
  super.key,
  required this.loading,
  required this.content,
});