@@ -78,7 +78,8 @@ class SKProductWrapper {
7878 if (other.runtimeType != runtimeType) {
7979 return false ;
8080 }
81- return other is SKProductWrapper && other.productIdentifier == productIdentifier &&
81+ return other is SKProductWrapper &&
82+ other.productIdentifier == productIdentifier &&
8283 other.localizedTitle == localizedTitle &&
8384 other.localizedDescription == localizedDescription &&
8485 other.priceLocale == priceLocale &&
@@ -89,15 +90,16 @@ class SKProductWrapper {
8990 }
9091
9192 @override
92- int get hashCode => hashValues (
93- this .productIdentifier,
94- this .localizedTitle,
95- this .localizedDescription,
96- this .priceLocale,
97- this .subscriptionGroupIdentifier,
98- this .price,
99- this .subscriptionPeriod,
100- this .introductoryPrice);
93+ int get hashCode =>
94+ hashValues (
95+ this .productIdentifier,
96+ this .localizedTitle,
97+ this .localizedDescription,
98+ this .priceLocale,
99+ this .subscriptionGroupIdentifier,
100+ this .price,
101+ this .subscriptionPeriod,
102+ this .introductoryPrice);
101103}
102104
103105/// Object that indicates the locale of the price
@@ -128,7 +130,8 @@ class SKPriceLocaleWrapper {
128130 if (other.runtimeType != runtimeType) {
129131 return false ;
130132 }
131- return other is SKPriceLocaleWrapper && other.currencySymbol == currencySymbol &&
133+ return other is SKPriceLocaleWrapper &&
134+ other.currencySymbol == currencySymbol &&
132135 other.currencyCode == currencyCode;
133136 }
134137
0 commit comments