mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-31 17:37:41 +00:00
914565eb72
* buy_provider_types refactoring * refactor MoonPay and sell option flow * dfx sell flow * add default sell provider flow * localization * Update other_settings_page.dart * [skip ci] update localization * [skip ci] providers fixes * [skip ci] ui fixes * refactor sell and buy flow * handle dfx availability by country * PR fixes
12 lines
No EOL
315 B
Dart
12 lines
No EOL
315 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:cake_wallet/buy/buy_provider_description.dart';
|
|
|
|
class BuyException implements Exception {
|
|
BuyException({required this.title, required this.content});
|
|
|
|
final String title;
|
|
final String content;
|
|
|
|
@override
|
|
String toString() => '$title: $content';
|
|
} |