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