start static method

void start({
  1. required String verificationToken,
  2. required VerificationSchemeType verificationScheme,
  3. required String languageCode,
  4. required Function partnerEndCallback,
  5. bool? showCloseSDKButton,
  6. String? colorBackgroundTertiary,
  7. String? colorBackgroundSecondary,
  8. String? colorBackgroundPrimary,
  9. String? colorTextSecondary,
  10. String? colorTextPrimary,
  11. String? colorBorders,
  12. String? colorActionButtons,
  13. 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);
}