PopupBrowser constructor

const PopupBrowser({
  1. Key? key,
  2. required String url,
  3. dynamic onAuthComplete(
    1. Map<String, String>
    )?,
})

Implementation

const PopupBrowser({
  super.key,
  required this.url,
  this.onAuthComplete,
});