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