fromJson static method

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

Implementation

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