TotalPayPayer constructor

TotalPayPayer({
  1. required String? firstName,
  2. required String? lastName,
  3. required String? address,
  4. required String? country,
  5. required String? city,
  6. required String? zip,
  7. required String? email,
  8. required String? phone,
  9. required String? ip,
  10. TotalPayPayerOption? options,
})

Implementation

TotalPayPayer(
    {required this.firstName,
    required this.lastName,
    required this.address,
    required this.country,
    required this.city,
    required this.zip,
    required this.email,
    required this.phone,
    required this.ip,
    this.options});