mirror of
https://github.com/dancojocaru2000/logic-circuits-simulator.git
synced 2025-02-22 17:19:36 +02:00
14 lines
405 B
Dart
14 lines
405 B
Dart
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
||
|
import 'package:logic_circuits_simulator/models/project.dart';
|
||
|
|
||
|
part 'edit_component.freezed.dart';
|
||
|
|
||
|
@freezed
|
||
|
class EditComponentPageArguments with _$EditComponentPageArguments {
|
||
|
const factory EditComponentPageArguments({
|
||
|
required ComponentEntry component,
|
||
|
@Default(false)
|
||
|
bool newComponent,
|
||
|
}) = _EditComponentPageArguments;
|
||
|
}
|