ComplyCubeWidget constructor

const ComplyCubeWidget({
  1. Key? key,
  2. required Map<String, dynamic> settings,
  3. void onCancelled(
    1. ComplyCubeError error
    )?,
  4. void onSuccess(
    1. ComplyCubeResult result
    )?,
  5. void onError(
    1. List<ComplyCubeError> errors
    )?,
  6. void onComplyCubeEvent(
    1. ComplyCubeEvent event
    )?,
})

Implementation

const ComplyCubeWidget({
  super.key,
  required this.settings,
  this.onCancelled,
  this.onSuccess,
  this.onError,
  this.onComplyCubeEvent,
});