22 lines
685 B
Dart
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,
|
|
};
|