toJson method

DynamicMap toJson()

Methods for Json serialization.

Used to convert ModelServerCommandCondition values to Json in the json_serializable package.

Jsonシリアライズを行うためのメソッド。

json_serializableのパッケージでModelServerCommandConditionの値をJsonに変換する際に利用します。

Implementation

DynamicMap toJson() => {
      kTypeFieldKey: ModelServerCommandCondition.typeString,
      kTypeKey: type?.name,
      kKeyKey: key,
      kValueKey: _toJsonForValue(value),
    };