PersonaLoadingScreen constructor

const PersonaLoadingScreen({
  1. Key? key,
  2. required bool visible,
  3. required VoidCallback onComplete,
})

Implementation

const PersonaLoadingScreen({
  Key? key,
  required this.visible,
  required this.onComplete,
}) : super(key: key);