PayMobStrings constructor

PayMobStrings({
  1. String country = "Country",
  2. String postalCode = "Postal code",
  3. String state = "State",
  4. String city = "City",
  5. String street = "Street",
  6. String building = "Building",
  7. String floor = "Floor",
  8. String apartment = "Apartment",
  9. String firstName = "First Name",
  10. String lastName = "Last Name",
  11. String email = "Email",
  12. String phone = "Phone",
  13. String next = "Next",
  14. String info = "Provide the following information for payment",
  15. String needCountry = "Need enter country",
  16. String needCode = "Need enter postal code",
  17. String needState = "Need enter State",
  18. String needCity = "Need enter City",
  19. String needStreet = "Need enter Street",
  20. String needBuilding = "Need enter Building",
  21. String needFloor = "Need enter Floor",
  22. String needApartment = "Need enter Apartment",
  23. String needFirstName = "Need enter First Name",
  24. String needLastName = "Need enter Last Name",
  25. String needEmail = "Need enter Email",
  26. String needPhone = "Need enter Phone",
})

Implementation

PayMobStrings({
  this.country = "Country",
  this.postalCode = "Postal code",
  this.state = "State",
  this.city = "City",
  this.street = "Street",
  this.building = "Building",
  this.floor = "Floor",
  this.apartment = "Apartment",
  this.firstName = "First Name",
  this.lastName = "Last Name",
  this.email = "Email",
  this.phone = "Phone",
  this.next = "Next",
  this.info = "Provide the following information for payment",
  //
  this.needCountry = "Need enter country",
  this.needCode = "Need enter postal code",
  this.needState = "Need enter State",
  this.needCity = "Need enter City",
  this.needStreet = "Need enter Street",
  this.needBuilding = "Need enter Building",
  this.needFloor = "Need enter Floor",
  this.needApartment = "Need enter Apartment",
  this.needFirstName = "Need enter First Name",
  this.needLastName = "Need enter Last Name",
  this.needEmail = "Need enter Email",
  this.needPhone = "Need enter Phone",
});