copyWith method

ConditionParameterBool copyWith({
  1. bool? value,
  2. FormatOptionsHelper? formatOptionsHelper,
})

Implementation

ConditionParameterBool copyWith({
  bool? value,
  FormatOptionsHelper? formatOptionsHelper,
}) {
  return ConditionParameterBool(
    value: value ?? this.value,
    formatOptionsHelper: formatOptionsHelper ?? this.formatOptionsHelper,
  );
}