AccountDeclineChargeOn.fromJson constructor

AccountDeclineChargeOn.fromJson(
  1. Object? json
)

Implementation

factory AccountDeclineChargeOn.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return AccountDeclineChargeOn(
    avsFailure: (map['avs_failure'] as bool),
    cvcFailure: (map['cvc_failure'] as bool),
  );
}