WebViewCredential constructor

const WebViewCredential({
  1. required String user,
  2. required String password,
})

Creates a WebViewCredential.

Implementation

const WebViewCredential({
  required this.user,
  required this.password,
});