CommonBrowser constructor

const CommonBrowser({
  1. Key? key,
  2. String? title,
  3. required String url,
  4. Color? backgroundColor,
  5. void onWebResourceError(
    1. WebResourceError error
    )?,
  6. void onHttpError(
    1. HttpResponseError error
    )?,
})

Implementation

const CommonBrowser(
    {Key? key,
    this.title,
    required this.url,
    this.backgroundColor,
    this.onWebResourceError,
    this.onHttpError})
    : super(key: key);