PickupAddress class

Constructors

PickupAddress({required int id, required int user_id, required double latitude, required double longitude, required String address, required String detailed_address, required String created_at, required String updated_at, required String deleted_at})
PickupAddress.fromJson(String source)
factory
PickupAddress.fromMap(Map map)
factory

Properties

address String
final
created_at String
final
deleted_at String
final
detailed_address String
final
hashCode int
The hash code for this object.
no setteroverride
id int
final
latitude double
final
longitude double
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
updated_at String
final
user_id int
final

Methods

copyWith({int? id, int? user_id, double? latitude, double? longitude, String? address, String? detailed_address, String? created_at, String? updated_at, String? deleted_at}) PickupAddress
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() String
toMap() Map<String, dynamic>
toString() String
A string representation of this object.
override

Operators

operator ==(covariant PickupAddress other) bool
The equality operator.
override