copyWith method
Implementation
AssingVariableFromStaticDoubleValue copyWith({
ID? cubitID,
ID? stateID,
ID? variableID,
String? jsonKey,
double? value,
int? targetIndex,
}) {
return AssingVariableFromStaticDoubleValue(
id: id,
cubitID: cubitID ?? this.cubitID,
stateID: stateID ?? this.stateID,
variableID: variableID ?? this.variableID,
type: type,
jsonKey: jsonKey ?? this.jsonKey,
value: value ?? this.value,
targetIndex: targetIndex ?? this.targetIndex,
);
}