copyWith method
Implementation
AppModelsState copyWith({
final Map<String, ModelEntity>? models,
}) {
return AppModelsState(
models: models ?? this.models,
);
}
AppModelsState copyWith({
final Map<String, ModelEntity>? models,
}) {
return AppModelsState(
models: models ?? this.models,
);
}