Skip to content

Commit 84b34f6

Browse files
examples formatted
1 parent 6013eb5 commit 84b34f6

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@
1212

1313
## 1.0.2
1414

15-
- Unit tests added
15+
- Unit tests added
16+
17+
## 1.0.3
18+
19+
- Examples formatted

example/lib/create_update_bill_example.dart example/lib/example.dart

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import 'package:webirr/webirr.dart';
22

3+
/// Creating a new Bill / Updating an existing Bill on WeBirr Servers
34
void main() async {
45
const apikey = 'YOUR_API_KEY';
56
const merchantId = 'YOUR_MERCHANT_ID';

example/lib/get_payment_status_example.dart example/lib/example2.dart

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import 'package:webirr/webirr.dart';
22

3+
/// Getting Payment status of an existing Bill from WeBirr Servers
34
void main() async {
45
const apikey = 'YOUR_API_KEY';
56

example/lib/delete_bill_example.dart example/lib/example3.dart

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import 'package:webirr/webirr.dart';
22

3+
/// Deleting an existing Bill from WeBirr Servers (if it is not paid)
34
void main() async {
45
const apikey = 'YOUR_API_KEY';
56

pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: webirr
2-
version: 1.0.2
2+
version: 1.0.3
33
description: >-
4-
Official Dart Client Library for WeBirr Payment Gateway APIs.
5-
It provides convenient access to WeBirr Payment Gateway APIs from Dart/Flutter Apps.
4+
Official Dart Client Library for WeBirr Payment Gateway APIs.
5+
This Library provides convenient access to WeBirr Payment Gateway APIs from Dart/Flutter Apps.
66
homepage: https://github.com/webirr/webirr-api-dart-client
77
environment:
88
sdk: '>=2.12.0 <3.0.0'

0 commit comments

Comments
 (0)