trphoenix
2018-11-29 25f4612acc6885d3f977c16252e2185b874b3394
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// GENERATED CODE - DO NOT MODIFY BY HAND
 
part of 'SearchState.dart';
 
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
 
SearchState _$SearchStateFromJson(Map<String, dynamic> json) {
  return new SearchState(
      result: json['result'] == null
          ? null
          : new SearchResult.fromJson(json['result']),
      hasError: json['hasError'] as bool,
      isLoading: json['isLoading'] as bool);
}
 
abstract class _$SearchStateSerializerMixin {
  SearchResult get result;
  bool get hasError;
  bool get isLoading;
  Map<String, dynamic> toJson() => <String, dynamic>{
        'result': result,
        'hasError': hasError,
        'isLoading': isLoading
      };
}