Asset.fromJson constructor
Implementation
factory Asset.fromJson(Map<String, dynamic> json) => Asset(
id: json["id"] == null ? null : json["id"],
merchantId: json["merchant_id"] == null ? null : json["merchant_id"],
uuid: json["uuid"] == null ? null : json["uuid"],
name: json["name"] == null ? null : json["name"],
url: json["url"] == null ? null : json["url"],
description: json["description"],
size: json["size"] == null ? null : json["size"],
type: json["type"] == null ? null : json["type"],
isImage: json["is_image"] == null ? null : json["is_image"],
status: json["status"] == null ? null : json["status"],
deletedAt: json["deleted_at"],
createdAt: json["created_at"] == null ? null : DateTime.parse(json["created_at"]),
updatedAt: json["updated_at"] == null ? null : DateTime.parse(json["updated_at"]),
pivot: json["pivot"] == null ? null : Pivot.fromJson(json["pivot"]),
);