TinkoffIdWebView constructor

const TinkoffIdWebView({
  1. Key? key,
  2. required dynamic onWebViewFinished(
    1. TinkoffIdResult result
    ),
  3. required String clientId,
  4. required String mobileRedirectUri,
  5. bool clearCookies = false,
  6. bool showProgressIndicator = false,
})

Implementation

const TinkoffIdWebView({
  Key? key,
  required this.onWebViewFinished,
  required this.clientId,
  required this.mobileRedirectUri,
  this.clearCookies = false,
  this.showProgressIndicator = false,
}) : super(key: key);