Liveness3DWidget constructor

Liveness3DWidget({
  1. Key? key,
  2. Store<int>? store,
  3. required String appKey,
  4. required Environment environment,
  5. TextsBuilder? textsBuilder,
  6. LoadingAppearence? loadingAppearance,
  7. required dynamic onSuccess(
    1. LivenessSuccessResult result
    ),
  8. required dynamic onError(
    1. Object? error
    ),
})

Implementation

Liveness3DWidget({
  Key? key,
  this.store,
  required this.appKey,
  required this.environment,
  this.textsBuilder,
  this.loadingAppearance,
  required this.onSuccess,
  required this.onError,
}) : super(key: key);