Line data Source code
1 : // GENERATED CODE - DO NOT MODIFY BY HAND
2 :
3 : part of 'problem_info.dart';
4 :
5 : // **************************************************************************
6 : // JsonSerializableGenerator
7 : // **************************************************************************
8 :
9 1 : _$_ProblemInfo _$$_ProblemInfoFromJson(Map<String, dynamic> json) =>
10 1 : _$_ProblemInfo(
11 1 : json['message'] as String,
12 1 : json['trace'] as String?,
13 : );
14 :
15 1 : Map<String, dynamic> _$$_ProblemInfoToJson(_$_ProblemInfo instance) =>
16 1 : <String, dynamic>{
17 1 : 'message': instance.message,
18 1 : 'trace': instance.trace,
19 : };
|