// GENERATED CODE - DO NOT MODIFY BY HAND part of 'draw.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** Draw _$DrawFromJson(Map json) => Draw( drawType: (json['draw_type'] as num?)?.toInt(), fillMode: (json['fill_mode'] as num?)?.toInt(), colorConfig: json['color_config'] == null ? null : ColorConfig.fromJson(json['color_config'] as Map), ); Map _$DrawToJson(Draw instance) => { 'draw_type': instance.drawType, 'fill_mode': instance.fillMode, 'color_config': instance.colorConfig, };