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