ThreeDSecureUsage.fromJson constructor

ThreeDSecureUsage.fromJson(
  1. Object? json
)

Implementation

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