BrowserDialogPage constructor

const BrowserDialogPage(
  1. {required dynamic onBrowse(
    1. String
    ),
  2. String text = '',
  3. Key? key}
)

Create an instance of this page.

Implementation

const BrowserDialogPage({
  required this.onBrowse,
  this.text = '',
  super.key,
});