THATMobile/lib/features/model/file/attach_file_model.g.dart
2026-02-26 10:39:42 +07:00

22 lines
685 B
Dart

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