fromJson static method

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

Implementation

static PrintifyShopModel fromJson(Map<String, dynamic> json) =>
    PrintifyShopModel(
      id: json['id'],
      title: json['title'],
      sales_channel: json['sales_channel'],
    );