BillingData class

Represents billing data for a particular entity.

Constructors

BillingData({String? email, String? firstName, String? lastName, String? phoneNumber, String? apartment, String? building, String? postalCode, String? city, String? state, String? country, String? floor, String? street, String? shippingMethod})
Constructs a BillingData object with the provided data. Optional data can be left blank.

Properties

apartment String?
Apartment number
getter/setter pair
building String?
Building number
getter/setter pair
city String?
City
getter/setter pair
country String?
Country
getter/setter pair
email String?
Email address
getter/setter pair
firstName String?
First name
getter/setter pair
floor String?
Floor
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
lastName String?
Last name
getter/setter pair
phoneNumber String?
Phone number
getter/setter pair
postalCode String?
Postal code
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
shippingMethod String?
Shipping method
getter/setter pair
state String?
State
getter/setter pair
street String?
Street
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts the BillingData object into a Map<String, dynamic> for JSON serialization.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited