EpsonPrinterResponse.fromJson constructor

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

Implementation

factory EpsonPrinterResponse.fromJson(Map<String, dynamic> json) =>
    EpsonPrinterResponse(
      type: json["type"] == null ? null : json["type"],
      success: json["success"] == null ? null : json["success"],
      message: json["message"] == null ? null : json["message"],
      content: json["content"] == null ? null : json["content"],
    );