PurchaseResult.fromJSON constructor

PurchaseResult.fromJSON(
  1. Map<String, dynamic> json
)

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?;