// GENERATED CODE - DO NOT MODIFY BY HAND part of 'container_size.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** ContainerSize _$ContainerSizeFromJson(Map json) => ContainerSize( width: (json['width'] as num?)?.toDouble(), height: (json['height'] as num?)?.toDouble(), ); Map _$ContainerSizeToJson(ContainerSize instance) => { 'width': instance.width, 'height': instance.height, };