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