Line data Source code
1 : // GENERATED CODE - DO NOT MODIFY BY HAND 2 : 3 : // ignore_for_file: implicit_dynamic_parameter, non_constant_identifier_names, unused_element 4 : 5 : part of 'dimension.dart'; 6 : 7 : // ************************************************************************** 8 : // JsonSerializableGenerator 9 : // ************************************************************************** 10 : 11 1 : _$_Dimension _$_$_DimensionFromJson(Map<String, dynamic> json) { 12 1 : return _$_Dimension( 13 2 : height: (json['height'] as num).toDouble(), 14 2 : width: (json['width'] as num).toDouble(), 15 : ); 16 : } 17 : 18 0 : Map<String, dynamic> _$_$_DimensionToJson(_$_Dimension instance) => 19 0 : <String, dynamic>{ 20 0 : 'height': instance.height, 21 0 : 'width': instance.width, 22 : };