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