TransactionCommitmentInfoIOS.fromJson constructor
Implementation
factory TransactionCommitmentInfoIOS.fromJson(Map<String, dynamic> json) {
return TransactionCommitmentInfoIOS(
billingPeriodNumber: json['billingPeriodNumber'] as int,
commitmentExpiresDate: (json['commitmentExpiresDate'] as num).toDouble(),
commitmentPrice: (json['commitmentPrice'] as num).toDouble(),
totalBillingPeriods: json['totalBillingPeriods'] as int,
);
}