// GENERATED CODE - DO NOT MODIFY BY HAND part of 'widget_location.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** WidgetLocation _$WidgetLocationFromJson(Map json) => WidgetLocation( (json['left'] as num?)?.toDouble(), (json['top'] as num?)?.toDouble(), (json['right'] as num?)?.toDouble(), (json['bottom'] as num?)?.toDouble(), ); Map _$WidgetLocationToJson(WidgetLocation instance) => { 'left': instance.left, 'top': instance.top, 'right': instance.right, 'bottom': instance.bottom, };