mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
Move bitcoin and monero parts into self modules.
This commit is contained in:
parent
e6b1da376d
commit
4535a1aaa8
126 changed files with 25452 additions and 0 deletions
11
cw_core/lib/balance.dart
Normal file
11
cw_core/lib/balance.dart
Normal file
|
@ -0,0 +1,11 @@
|
|||
abstract class Balance {
|
||||
const Balance(this.available, this.additional);
|
||||
|
||||
final int available;
|
||||
|
||||
final int additional;
|
||||
|
||||
String get formattedAvailableBalance;
|
||||
|
||||
String get formattedAdditionalBalance;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue