// GENERATED CODE - DO NOT MODIFY BY HAND part of 'attach_file_model.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** AttachFileModel _$AttachFileModelFromJson(Map json) => AttachFileModel( title: json['title'] as String? ?? '', url: json['url'] as String? ?? '', type: json['type'] as String? ?? '', ); Map _$AttachFileModelToJson(AttachFileModel instance) => { 'title': instance.title, 'url': instance.url, 'type': instance.type, };