copyWith method
ConditionParameterCubitState
copyWith({
- ID? cubitID,
- ID? stateID,
- ID? variableID,
- int? listIndex,
- FormatOptionsHelper? formatOptionsHelper,
Implementation
ConditionParameterCubitState copyWith({
ID? cubitID,
ID? stateID,
ID? variableID,
int? listIndex,
FormatOptionsHelper? formatOptionsHelper,
}) {
return ConditionParameterCubitState(
cubitID: cubitID ?? this.cubitID,
stateID: stateID ?? this.stateID,
formatOptionsHelper: formatOptionsHelper ?? this.formatOptionsHelper,
);
}