mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
21 lines
No EOL
597 B
Dart
21 lines
No EOL
597 B
Dart
import 'package:cw_core/enumerable_item.dart';
|
|
|
|
class BuyProviderDescription extends EnumerableItem<int>
|
|
with Serializable<int> {
|
|
const BuyProviderDescription({String title, int raw})
|
|
: super(title: title, raw: raw);
|
|
|
|
static const wyre = BuyProviderDescription(title: 'Wyre', raw: 0);
|
|
static const moonPay = BuyProviderDescription(title: 'MoonPay', raw: 1);
|
|
|
|
static BuyProviderDescription deserialize({int raw}) {
|
|
switch (raw) {
|
|
case 0:
|
|
return wyre;
|
|
case 1:
|
|
return moonPay;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
} |