Address class

Constructors

Address({String? number, String? street, String? apt, String? city, String? state, String? country, String? zipCode})
Address.fromJson(String source)
factory
Address.fromMap(Map<String, dynamic> map)
factory

Properties

apt String?
getter/setter pair
city String?
getter/setter pair
country String?
getter/setter pair
hashCode int
The hash code for this object.
no setter
number String?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
state String?
getter/setter pair
street String?
getter/setter pair
zipCode String?
getter/setter pair

Methods

copyWith({String? number, String? street, String? apt, String? city, String? state, String? country, String? zipCode}) Address
Specify how to clone the concrete class.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
inherited
toMap({bool withId = true}) Map<String, dynamic>
toString() String
A string representation of this object.
override

Operators

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