26 lines
821 B
Dart
26 lines
821 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'absence_prefill_response.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
AbsencePrefillResponse _$AbsencePrefillResponseFromJson(
|
|
Map<String, dynamic> json,
|
|
) => AbsencePrefillResponse(
|
|
firstName: json['firstName'] as String? ?? '',
|
|
lastName: json['lastName'] as String? ?? '',
|
|
className: json['className'] as String? ?? '',
|
|
phone: json['phone'] as String? ?? '',
|
|
);
|
|
|
|
Map<String, dynamic> _$AbsencePrefillResponseToJson(
|
|
AbsencePrefillResponse instance,
|
|
) => <String, dynamic>{
|
|
'firstName': instance.firstName,
|
|
'lastName': instance.lastName,
|
|
'className': instance.className,
|
|
'phone': instance.phone,
|
|
};
|