mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 11:57:41 +00:00
64 lines
1.7 KiB
Dart
64 lines
1.7 KiB
Dart
/*
|
|
* This file is part of Stack Wallet.
|
|
*
|
|
* Copyright (c) 2023 Cypher Stack
|
|
* All Rights Reserved.
|
|
* The code is distributed under GPLv3 license, see LICENSE file for details.
|
|
* Generated by Cypher Stack on 2023-05-26
|
|
*
|
|
*/
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:stackwallet/services/coins/manager.dart';
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
|
import 'package:stackwallet/utilities/enums/stack_restoring_status.dart';
|
|
|
|
class WalletRestoreState extends ChangeNotifier {
|
|
final String walletId;
|
|
final String walletName;
|
|
final Coin coin;
|
|
late StackRestoringStatus _restoringStatus;
|
|
Manager? manager;
|
|
String? address;
|
|
String? mnemonic;
|
|
String? mnemonicPassphrase;
|
|
int? height;
|
|
|
|
StackRestoringStatus get restoringState => _restoringStatus;
|
|
set restoringState(StackRestoringStatus restoringStatus) {
|
|
_restoringStatus = restoringStatus;
|
|
notifyListeners();
|
|
}
|
|
|
|
WalletRestoreState({
|
|
required this.walletId,
|
|
required this.walletName,
|
|
required this.coin,
|
|
required StackRestoringStatus restoringStatus,
|
|
this.manager,
|
|
this.address,
|
|
this.mnemonic,
|
|
this.mnemonicPassphrase,
|
|
this.height,
|
|
}) {
|
|
_restoringStatus = restoringStatus;
|
|
}
|
|
|
|
WalletRestoreState copyWith({
|
|
StackRestoringStatus? restoringStatus,
|
|
String? address,
|
|
int? height,
|
|
}) {
|
|
return WalletRestoreState(
|
|
walletId: walletId,
|
|
walletName: walletName,
|
|
coin: coin,
|
|
restoringStatus: restoringStatus ?? _restoringStatus,
|
|
manager: manager,
|
|
address: this.address,
|
|
mnemonic: mnemonic,
|
|
mnemonicPassphrase: mnemonicPassphrase,
|
|
height: this.height,
|
|
);
|
|
}
|
|
}
|