fromJson static method

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

Implementation

static AssingVariableFromStaticDoubleValue fromJson(
    Map<String, dynamic> json) {
  return AssingVariableFromStaticDoubleValue(
    id: json['id'],
    cubitID: json['cubit_id'],
    stateID: json['state_id'],
    variableID: json['variable_id'],
    assingFromType: AssignVariableActionTypes.valueFromStaticDouble,
    jsonKey: json['json_key'],
    value: json['value'],
    targetIndex: json['target_index'],
  );
}