Shipping constructor
Shipping({})
Creates a new instance of Shipping with the given parameters.
Implementation
Shipping({
required this.firstName,
required this.lastName,
required this.email,
required this.phone,
required this.address,
required this.city,
required this.region,
required this.country,
required this.postalCode,
required this.idType,
required this.idNumber,
});