ThreeDSecureUsage.fromJson constructor
ThreeDSecureUsage.fromJson(
- Object? json
Implementation
factory ThreeDSecureUsage.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return ThreeDSecureUsage(supported: (map['supported'] as bool));
}