NanoafGate constructor

const NanoafGate({
  1. Key? key,
  2. required Widget child,
  3. required NanoafConfig config,
  4. Widget? loadingWidget,
  5. void onCheckComplete(
    1. NanoafCheckOutcome outcome
    )?,
})

Implementation

const NanoafGate({
  super.key,
  required this.child,
  required this.config,
  this.loadingWidget,
  this.onCheckComplete,
});