ODF/lib/bean/port_list_bean.g.dart
2025-09-21 22:07:13 +08:00

21 lines
707 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'port_list_bean.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
PortListBean _$PortListBeanFromJson(Map<String, dynamic> json) => PortListBean(
json['name'] as String?,
(json['rowList'] as List<dynamic>)
.map((e) => RowListBean.fromJson(e as Map<String, dynamic>))
.toList(),
);
Map<String, dynamic> _$PortListBeanToJson(PortListBean instance) =>
<String, dynamic>{
'name': instance.name,
'rowList': instance.rowList.map((e) => e.toJson()).toList(),
};