8 lines
172 B
Dart
8 lines
172 B
Dart
import 'package:pshared/models/payment/type.dart';
|
|
|
|
|
|
abstract class PaymentMethodData {
|
|
PaymentType get type;
|
|
}
|
|
|
|
typedef MethodMap = Map<PaymentType, PaymentMethodData?>; |