copyWith method
WebApiModulesPluginsTeamupTeamupPlugin
copyWith({
- bool? enabled,
- WebApiModulesPluginsTeamupTeamupSettings? settings,
Implementation
WebApiModulesPluginsTeamupTeamupPlugin copyWith({
bool? enabled,
WebApiModulesPluginsTeamupTeamupSettings? settings,
}) {
return WebApiModulesPluginsTeamupTeamupPlugin(
enabled: enabled ?? this.enabled,
settings: settings ?? this.settings,
);
}