OrderInfo class

Inheritance

Constructors

OrderInfo({required String name, required String phoneNumber, required String emailAddress, Address? shippingAddress, dynamic extra, int? clientId})
Order information
const
OrderInfo.fromJson(Map<String, dynamic> json)
Parse from a json
factory

Properties

clientId int?
clientId client identifier
final
emailAddress String
emailAddress Email address of the user
final
extra → dynamic
extra callback sign
final
hashCode int
The hash code for this object.
no setterinherited
name String
name Name of the user
final
phoneNumber String
phoneNumber Phone number of the user
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
shippingAddress Address?
shippingAddress Shipping address for this order; may be null
final

Methods

copyWith({String? name, String? phoneNumber, String? emailAddress, Address? shippingAddress, dynamic extra, int? clientId}) OrderInfo
getConstructor() String
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson([dynamic extra]) Map<String, dynamic>
override
toString() String
A string representation of this object.
inherited

Operators

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

Constants

CONSTRUCTOR → const String