mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
35 lines
1 KiB
Dart
35 lines
1 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:cake_wallet/bitcoin/bitcoin_amount_format.dart';
|
|
import 'package:cake_wallet/src/domain/common/balance.dart';
|
|
|
|
class BitcoinBalance extends Balance {
|
|
const BitcoinBalance({@required this.confirmed, @required this.unconfirmed}) : super();
|
|
|
|
factory BitcoinBalance.fromJSON(String jsonSource) {
|
|
if (jsonSource == null) {
|
|
return null;
|
|
}
|
|
|
|
final decoded = json.decode(jsonSource) as Map;
|
|
|
|
return BitcoinBalance(
|
|
confirmed: decoded['confirmed'] as int ?? 0,
|
|
unconfirmed: decoded['unconfirmed'] as int ?? 0);
|
|
}
|
|
|
|
final int confirmed;
|
|
final int unconfirmed;
|
|
|
|
int get total => confirmed + unconfirmed;
|
|
|
|
String get confirmedFormatted => bitcoinAmountToString(amount: confirmed);
|
|
|
|
String get unconfirmedFormatted => bitcoinAmountToString(amount: unconfirmed);
|
|
|
|
String get totalFormatted => bitcoinAmountToString(amount: total);
|
|
|
|
String toJSON() =>
|
|
json.encode({'confirmed': confirmed, 'unconfirmed': unconfirmed});
|
|
}
|