GetPaymentAccountFormAsJsonRequest constructor

GetPaymentAccountFormAsJsonRequest({
  1. String? paymentMethodId,
})

Implementation

factory GetPaymentAccountFormAsJsonRequest({
  $core.String? paymentMethodId,
}) {
  final $result = create();
  if (paymentMethodId != null) {
    $result.paymentMethodId = paymentMethodId;
  }
  return $result;
}