fromJson static method
Implementation
static ConsolePrintAction fromJson(Map<String, dynamic> json) {
return ConsolePrintAction(
id: json['id'],
content: json['content'],
);
}
static ConsolePrintAction fromJson(Map<String, dynamic> json) {
return ConsolePrintAction(
id: json['id'],
content: json['content'],
);
}