Options constructor

Options({
  1. required String clientId,
  2. required String clientSecret,
  3. String? sessionId,
  4. required Environment environment,
  5. String? phoneNumber,
  6. PhoneInputType? phoneInputType,
  7. OtpInputType? otpInputType,
  8. String? userId,
  9. UserEventType? userEventType,
  10. String? merchantId,
  11. Map<String, String> additionalAttributes = const {},
})

Implementation

Options({
  required this.clientId,
  required this.clientSecret,
  this.sessionId,
  required this.environment,
  this.phoneNumber,
  this.phoneInputType,
  this.otpInputType,
  this.userId,
  this.userEventType,
  this.merchantId,
  this.additionalAttributes = const {},
});