// GENERATED CODE - DO NOT MODIFY BY HAND part of 'draw_src.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** DrawSrc _$DrawSrcFromJson(Map json) => DrawSrc( srcType: (json['src_type'] as num?)?.toInt(), draw: json['draw'] == null ? null : Draw.fromJson(json['draw'] as Map), ); Map _$DrawSrcToJson(DrawSrc instance) => { 'src_type': instance.srcType, 'draw': instance.draw, };