mirror of
https://github.com/dancojocaru2000/logic-circuits-simulator.git
synced 2025-02-22 09:09:35 +02:00
For now just the code, without UI that shows the simulation. However, the code works. Also added ground work for visual designer.
19 lines
649 B
Dart
19 lines
649 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'project.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$_ProjectIndex _$$_ProjectIndexFromJson(Map<String, dynamic> json) =>
|
|
_$_ProjectIndex(
|
|
components: (json['components'] as List<dynamic>)
|
|
.map((e) => ComponentEntry.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
);
|
|
|
|
Map<String, dynamic> _$$_ProjectIndexToJson(_$_ProjectIndex instance) =>
|
|
<String, dynamic>{
|
|
'components': instance.components,
|
|
};
|