copyWith method

ConditionParameterDouble copyWith({
  1. double? value,
  2. FormatOptionsHelper? formatOptionsHelper,
})

Implementation

ConditionParameterDouble copyWith({
  double? value,
  FormatOptionsHelper? formatOptionsHelper,
}) {
  return ConditionParameterDouble(
    value: value ?? this.value,
    formatOptionsHelper: formatOptionsHelper ?? this.formatOptionsHelper,
  );
}