Invoice constructor
Invoice({
- String? extra,
- int? client_id,
- string? currency,
- vector<
LabeledPricePart> ? price_parts, - int53? max_tip_amount,
- vector<
int53> ? suggested_tip_amounts, - string? recurring_payment_terms_of_service_url,
- Bool? is_test,
- Bool? need_name,
- Bool? need_phone_number,
- Bool? need_email_address,
- Bool? need_shipping_address,
- Bool? send_phone_number_to_provider,
- Bool? send_email_address_to_provider,
- Bool? is_flexible,
Implementation
Invoice({
super.extra,
super.client_id,
this.currency,
this.price_parts,
this.max_tip_amount,
this.suggested_tip_amounts,
this.recurring_payment_terms_of_service_url,
this.is_test,
this.need_name,
this.need_phone_number,
this.need_email_address,
this.need_shipping_address,
this.send_phone_number_to_provider,
this.send_email_address_to_provider,
this.is_flexible,
});