21 lines
707 B
Dart
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(),
|
|
};
|