copyWith method

DarwinSystemUserArgs copyWith({
  1. Module? appModule,
  2. List<DarwinPlugin>? plugins,
})

Implementation

DarwinSystemUserArgs copyWith({
  Module? appModule,
  List<DarwinPlugin>? plugins,
}) {
  return DarwinSystemUserArgs(
    appModule: appModule ?? this.appModule,
    plugins: plugins ?? this.plugins,
  );
}