copyWith method

Implementation

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