mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
cef3029f6f
* CW-473 Remove deprecated Exchanges * CW-473 Clean up Exchange Code * CW-473 Add Decimals to Crypto Enums * CW-473 Fix minor merge error * CW-473 Fix minor merge error * CW-473 Fix FAQ Locals * CW-473 Apply requested changes * CW-473 Show Error if Exchange Provider is not supported anymore * CW-473 Implement Requested Changes
19 lines
429 B
Dart
19 lines
429 B
Dart
import 'package:cake_wallet/exchange/limits.dart';
|
|
|
|
abstract class LimitsState {}
|
|
|
|
class LimitsInitialState extends LimitsState {}
|
|
|
|
class LimitsIsLoading extends LimitsState {}
|
|
|
|
class LimitsLoadedSuccessfully extends LimitsState {
|
|
LimitsLoadedSuccessfully({required this.limits});
|
|
|
|
final Limits limits;
|
|
}
|
|
|
|
class LimitsLoadedFailure extends LimitsState {
|
|
LimitsLoadedFailure({required this.error});
|
|
|
|
final String error;
|
|
}
|