Invoice constructor

Invoice(
  1. {required String currency,
  2. required List<LabeledPricePart> price_parts,
  3. required int max_tip_amount,
  4. required List<int> suggested_tip_amounts,
  5. required String recurring_payment_terms_of_service_url,
  6. required String terms_of_service_url,
  7. required bool is_test,
  8. required bool need_name,
  9. required bool need_phone_number,
  10. required bool need_email_address,
  11. required bool need_shipping_address,
  12. required bool send_phone_number_to_provider,
  13. required bool send_email_address_to_provider,
  14. required bool is_flexible,
  15. int? extra,
  16. int? clientId}
)

Product invoice

Implementation

Invoice