Skip to content

Commit

Permalink
IAPItem deserialization fix (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
suquant authored Oct 11, 2020
1 parent a320b60 commit cce84bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules.dart
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class IAPItem {
signatureAndroid = json['signatureAndroid'] as String,
iconUrl = json['iconUrl'] as String,
originalJson = json['originalJson'] as String,
originalPrice = json['originalJson'] as String;
originalPrice = json['originalPrice'] as String;

/// wow, i find if i want to save a IAPItem, there is not "toJson" to cast it into String...
/// i'm sorry to see that... so,
Expand Down

0 comments on commit cce84bf

Please sign in to comment.