fromJson static method

GetnetPrintPayload fromJson(
  1. Map json
)

Implementation

static GetnetPrintPayload fromJson(Map json) {
  return GetnetPrintPayload(
    printableContent:
        json['printable_content']
            .map<GetnetContentprint>((e) => GetnetContentprint.fromJson(e))
            .toList(),
  );
}