copyWith method
Implementation
$FespSwitchBuilderData copyWith({
bool? value,
void Function(bool value)? onChanged,
void Function(bool value)? onFocusChange,
}) {
return $FespSwitchBuilderData(
value: value ?? this.value,
onChanged: onChanged ?? this.onChanged,
onFocusChange: onFocusChange ?? this.onFocusChange,
);
}