fromJson static method
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'],
);
}