WebView constructor

const WebView({
  1. Key? key,
  2. required String customerIDValue,
  3. required String firstNameValue,
  4. required String lastNameValue,
  5. required String clientCodeValue,
})

Implementation

const WebView(
    {Key? key,
    required this.customerIDValue,
    required this.firstNameValue,
    required this.lastNameValue,
    required this.clientCodeValue})
    : super(key: key);