CommonBrowser constructor

const CommonBrowser({
  1. Key? key,
  2. required String title,
  3. required String url,
})

Implementation

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