Skip to content

Commit

Permalink
Fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
SpertsyanKM committed Nov 25, 2024
1 parent bb2dc8d commit 5be0dc0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/src/dto/product.dart
Original file line number Diff line number Diff line change
Expand Up @@ -83,23 +83,23 @@ class QProduct {
final String? prettyPrice;

/// Localized price of the product
@JsonKey(ignore: true)
@JsonKey(includeFromJson: false, includeToJson: false)
double? price;

/// Store Product currency code, such as USD
@JsonKey(ignore: true)
@JsonKey(includeFromJson: false, includeToJson: false)
String? currencyCode;

/// Store product title
@JsonKey(ignore: true)
@JsonKey(includeFromJson: false, includeToJson: false)
String? storeTitle;

/// Store product description
@JsonKey(ignore: true)
@JsonKey(includeFromJson: false, includeToJson: false)
String? storeDescription;

/// Formatted introductory price of the subscription, including its currency sign, such as €2.99
@JsonKey(ignore: true)
@JsonKey(includeFromJson: false, includeToJson: false)
String? prettyIntroductoryPrice;

QProduct(
Expand Down
3 changes: 3 additions & 0 deletions lib/src/dto/sku_details/sku_details.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5be0dc0

Please sign in to comment.