copyWith method

Implementation

PluginInstallationStatus copyWith({
  List<MarketplaceInstallStatus>? marketplaces,
  List<PluginInstallStatus>? plugins,
}) => PluginInstallationStatus(
  marketplaces: marketplaces ?? this.marketplaces,
  plugins: plugins ?? this.plugins,
);