Skip to content

Commit 305276e

Browse files
authored
[in_app_purchase] Fix typo in parameter name (#904)
1 parent 1cfb5af commit 305276e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

packages/in_app_purchase/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.4
2+
3+
* Fix typo in parameter name.(`itemTile` -> `itemTitle`)
4+
15
## 0.1.3
26

37
* Update code format.

packages/in_app_purchase/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This package is not an _endorsed_ implementation of `in_app_purchase`. Therefore
3535
```yaml
3636
dependencies:
3737
in_app_purchase: ^3.2.1
38-
in_app_purchase_tizen: ^0.1.3
38+
in_app_purchase_tizen: ^0.1.4
3939
```
4040
4141
Then you can import `in_app_purchase` and `in_app_purchase_tizen` in your Dart code:

packages/in_app_purchase/lib/src/in_app_purchase_tizen_platform.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ class InAppPurchaseTizenPlatform extends InAppPurchasePlatform {
153153
final int seq = detail!['Seq']! as int;
154154
final String invoiceId = detail['InvoiceID']! as String;
155155
final String itemId = detail['ItemID']! as String;
156-
final String itemTitle = detail['ItemTile']! as String;
156+
final String itemTitle = detail['ItemTitle']! as String;
157157
final int itemType = detail['ItemType']! as int;
158158
final String orderTime = detail['OrderTime']! as String;
159159
final int? period = detail['Period'] as int?;

packages/in_app_purchase/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: in_app_purchase_tizen
22
description: Tizen implementation of the in_app_purchase plugin for Samsung Smart TV.
33
homepage: https://github.com/flutter-tizen/plugins
44
repository: https://github.com/flutter-tizen/plugins/tree/master/packages/in_app_purchase
5-
version: 0.1.3
5+
version: 0.1.4
66

77
environment:
88
sdk: ">=3.1.0 <4.0.0"

0 commit comments

Comments
 (0)