Webview constructor

const Webview({
  1. Key? key,
  2. required Brand brand,
  3. required String url,
})

Implementation

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