fromJson static method

PrintifyShipmentModel fromJson(
  1. Map<String, dynamic> json
)

Implementation

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