widget_location.g.dart 752 B

1234567891011121314151617181920212223
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'widget_location.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. WidgetLocation _$WidgetLocationFromJson(Map<String, dynamic> json) =>
  7. WidgetLocation(
  8. (json['left'] as num?)?.toDouble(),
  9. (json['top'] as num?)?.toDouble(),
  10. (json['right'] as num?)?.toDouble(),
  11. (json['bottom'] as num?)?.toDouble(),
  12. );
  13. Map<String, dynamic> _$WidgetLocationToJson(WidgetLocation instance) =>
  14. <String, dynamic>{
  15. 'left': instance.left,
  16. 'top': instance.top,
  17. 'right': instance.right,
  18. 'bottom': instance.bottom,
  19. };