PurchaseResult.fromJSON constructor
Implementation
PurchaseResult.fromJSON(Map<String, dynamic> json)
: responseCode = json['responseCode'] as int?,
debugMessage = json['debugMessage'] as String?,
code = json['code'] as String?,
message = json['message'] as String?;