StoreLicense.fromJson constructor

StoreLicense.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory StoreLicense.fromJson(Map<String, dynamic> json) {
  return StoreLicense(
      isActive: json['isActive'],
      skuStoreId: json['skuStoreId'],
      inAppOfferToken: json['inAppOfferToken'],
      expirationDate: json['expirationDate']);
}