logic-circuits-simulator/lib/models/project.g.dart
Dan Cojocaru 1e65e42115
Implemented simulation
For now just the code, without UI that shows the simulation.
However, the code works.
Also added ground work for visual designer.
2022-06-20 12:35:46 +03:00

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,
};