21 lines
677 B
Dart
21 lines
677 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'property_bean.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
PropertyBean _$PropertyBeanFromJson(Map<String, dynamic> json) => PropertyBean(
|
|
json['title'] as String?,
|
|
json['consumeDetails'] as String?,
|
|
json['datePrompt'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> _$PropertyBeanToJson(PropertyBean instance) =>
|
|
<String, dynamic>{
|
|
'title': instance.title,
|
|
'consumeDetails': instance.consumeDetails,
|
|
'datePrompt': instance.datePrompt,
|
|
};
|