WebView constructor

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

Implementation

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