ThreeDSecureUsage constructor

  1. @JsonSerializable(explicitToJson: true)
const ThreeDSecureUsage({
  1. bool? isSupported,
})

Data associated with the 3ds usage.

Implementation

@JsonSerializable(explicitToJson: true)
const factory ThreeDSecureUsage({
  /// Whether 3ds is supported or not.
  bool? isSupported,
}) = _ThreeDSecureUsage;