copyWith method

ConditionParameterCurrentCubitState copyWith({
  1. ID? cubitID,
  2. FormatOptionsHelper? formatOptionsHelper,
})

Implementation

ConditionParameterCurrentCubitState copyWith({
  ID? cubitID,
  FormatOptionsHelper? formatOptionsHelper,
}) {
  return ConditionParameterCurrentCubitState(
    cubitID: cubitID ?? this.cubitID,
    formatOptionsHelper: formatOptionsHelper ?? this.formatOptionsHelper,
  );
}