PaymentForm constructor

PaymentForm({
  1. required int id,
  2. PaymentFormType? type,
  3. required int sellerBotUserId,
  4. ProductInfo? productInfo,
})

Implementation

PaymentForm({
  required this.id,
  this.type,
  required this.sellerBotUserId,
  this.productInfo,
});