fromJson static method
Implementation
static PrintifyShipmentModel fromJson(Map<String, dynamic> json) =>
PrintifyShipmentModel(
carrier: json['carrier'],
number: json['number'],
url: json['url'],
delivered_at: json['delivered_at'],
);