DeliveryAddress class

Constructors

DeliveryAddress({required int id, required int user_id, required double latitude, required double longitude, required String address, required String detailed_address, required String recipient_name, required String recipient_mobile, required String created_at, required String updated_at, required String deleted_at})
DeliveryAddress.fromJson(String source)
factory
DeliveryAddress.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
recipient_mobile String
final
recipient_name String
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? recipient_name, String? recipient_mobile, String? created_at, String? updated_at, String? deleted_at}) DeliveryAddress
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 DeliveryAddress other) bool
The equality operator.
override