-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added error messages for payments that's under development. Resolves: #1
- Loading branch information
Showing
12 changed files
with
248 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:rave_flutter/src/manager/base_transaction_manager.dart'; | ||
|
||
class AchTransactionManager extends BaseTransactionManager { | ||
AchTransactionManager( | ||
{@required BuildContext context, | ||
@required TransactionComplete onTransactionComplete}) | ||
: super( | ||
context: context, | ||
onTransactionComplete: onTransactionComplete, | ||
); | ||
|
||
@override | ||
charge() { | ||
// TODO: implement charge | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:rave_flutter/src/manager/base_transaction_manager.dart'; | ||
|
||
class GhMMTransactionManager extends BaseTransactionManager { | ||
GhMMTransactionManager( | ||
{@required BuildContext context, | ||
@required TransactionComplete onTransactionComplete}) | ||
: super( | ||
context: context, | ||
onTransactionComplete: onTransactionComplete, | ||
); | ||
|
||
@override | ||
charge() { | ||
// TODO: implement charge | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:rave_flutter/src/manager/base_transaction_manager.dart'; | ||
|
||
class MpesaTransactionManager extends BaseTransactionManager { | ||
MpesaTransactionManager( | ||
{@required BuildContext context, | ||
@required TransactionComplete onTransactionComplete}) | ||
: super( | ||
context: context, | ||
onTransactionComplete: onTransactionComplete, | ||
); | ||
|
||
@override | ||
charge() { | ||
// TODO: implement charge | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:rave_flutter/src/manager/base_transaction_manager.dart'; | ||
|
||
class UgMMTransactionManager extends BaseTransactionManager { | ||
UgMMTransactionManager( | ||
{@required BuildContext context, | ||
@required TransactionComplete onTransactionComplete}) | ||
: super( | ||
context: context, | ||
onTransactionComplete: onTransactionComplete, | ||
); | ||
|
||
@override | ||
charge() { | ||
// TODO: implement charge | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.