Message.fromJson constructor

Message.fromJson(
  1. Map json_
)

Implementation

Message.fromJson(core.Map json_)
  : this(
      newJobState: json_['newJobState'] as core.String?,
      newTaskState: json_['newTaskState'] as core.String?,
      type: json_['type'] as core.String?,
    );