18 lines
529 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'integer_model.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
_$_IntegerModel _$$_IntegerModelFromJson(Map<String, dynamic> json) =>
_$_IntegerModel(
value: json['value'] as int,
);
Map<String, dynamic> _$$_IntegerModelToJson(_$_IntegerModel instance) =>
<String, dynamic>{
'value': instance.value,
};