ShippingServiceCountry.fromMap constructor
Implementation
factory ShippingServiceCountry.fromMap(Map<String, dynamic> json) => ShippingServiceCountry(
id: json["id"],
name: json["name"],
code: json["code"],
regions: json["regions"] == null ? [] : List<FluffyRegion>.from(json["regions"]!.map((x) => FluffyRegion.fromMap(x))),
);