16 lines
566 B
Dart
16 lines
566 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'system_log.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
SystemLogResponse _$SystemLogResponseFromJson(Map<String, dynamic> json) =>
|
|
SystemLogResponse(
|
|
logs: (json['logs'] as List<dynamic>).map((e) => e as String).toList(),
|
|
);
|
|
|
|
Map<String, dynamic> _$SystemLogResponseToJson(SystemLogResponse instance) =>
|
|
<String, dynamic>{'logs': instance.logs};
|