// GENERATED CODE - DO NOT MODIFY BY HAND part of 'animator.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** Animator _$AnimatorFromJson(Map json) => Animator( id: json['id'] as String, name: json['name'] as String, content: json['content'] as String, ); Map _$AnimatorToJson(Animator instance) => { 'id': instance.id, 'name': instance.name, 'content': instance.content, };