Line data    Source code 
       1             : // GENERATED CODE - DO NOT MODIFY BY HAND
       2             : 
       3             : part of 'problem_page_data.dart';
       4             : 
       5             : // **************************************************************************
       6             : // JsonSerializableGenerator
       7             : // **************************************************************************
       8             : 
       9           1 : _$_ProblemPageData _$$_ProblemPageDataFromJson(Map<String, dynamic> json) =>
      10           1 :     _$_ProblemPageData(
      11           2 :       ProblemInfo.fromJson(json['problem'] as Map<String, dynamic>),
      12             :     );
      13             : 
      14           1 : Map<String, dynamic> _$$_ProblemPageDataToJson(_$_ProblemPageData instance) =>
      15           1 :     <String, dynamic>{
      16           1 :       'problem': instance.problem,
      17             :     };
       |