start static method
void
start({
- required String verificationToken,
- required VerificationSchemeType verificationScheme,
- required String languageCode,
- required Function partnerEndCallback,
- bool? showPartnerLogo,
- bool? showCloseSDKButton,
- String? colorBackgroundTertiary,
- String? colorBackgroundSecondary,
- String? colorBackgroundPrimary,
- String? colorTextSecondary,
- String? colorTextPrimary,
- String? colorBorders,
- String? colorActionButtons,
- String? colorIcons,
Implementation
static void start(
{required String verificationToken,
required VerificationSchemeType verificationScheme,
required String languageCode,
required Function partnerEndCallback,
bool? showPartnerLogo,
bool? showCloseSDKButton,
String? colorBackgroundTertiary,
String? colorBackgroundSecondary,
String? colorBackgroundPrimary,
String? colorTextSecondary,
String? colorTextPrimary,
String? colorBorders,
String? colorActionButtons,
String? colorIcons}) {
VcheckFlutterPlatform.instance.start(
verificationToken: verificationToken,
verificationScheme: verificationScheme,
languageCode: languageCode,
partnerEndCallback: partnerEndCallback,
showCloseSDKButton: showCloseSDKButton,
showPartnerLogo: showPartnerLogo,
colorActionButtons: colorActionButtons,
colorBackgroundPrimary: colorBackgroundPrimary,
colorBackgroundSecondary: colorBackgroundSecondary,
colorBackgroundTertiary: colorBackgroundTertiary,
colorBorders: colorBorders,
colorTextPrimary: colorTextPrimary,
colorTextSecondary: colorTextSecondary,
colorIcons: colorIcons);
}