WebView constructor

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

Implementation

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