trphoenix
2018-11-15 5c120600109b11091e48e2330d3853930dd8d38e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// GENERATED CODE - DO NOT MODIFY BY HAND
 
part of 'strict_keys_object.dart';
 
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
 
StrictKeysObject _$StrictKeysObjectFromJson(Map json) {
  $checkKeys(json,
      allowedKeys: const ['value', 'custom_field'],
      requiredKeys: const ['value', 'custom_field']);
  return StrictKeysObject(json['value'] as int, json['custom_field'] as String);
}
 
abstract class _$StrictKeysObjectSerializerMixin {
  int get value;
  String get customField;
  Map<String, dynamic> toJson() =>
      <String, dynamic>{'value': value, 'custom_field': customField};
}