- Bump version to `0.1.7+45` and update SDK constraint to `>=3.8.0 <4.0.0`. - Update numerous dependencies
26 lines
916 B
Dart
26 lines
916 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'getCustomTimetableEventResponse.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
GetCustomTimetableEventResponse _$GetCustomTimetableEventResponseFromJson(
|
|
Map<String, dynamic> json,
|
|
) =>
|
|
GetCustomTimetableEventResponse(
|
|
(json['events'] as List<dynamic>)
|
|
.map(
|
|
(e) => CustomTimetableEvent.fromJson(e as Map<String, dynamic>),
|
|
)
|
|
.toList(),
|
|
)
|
|
..headers = (json['headers'] as Map<String, dynamic>?)?.map(
|
|
(k, e) => MapEntry(k, e as String),
|
|
);
|
|
|
|
Map<String, dynamic> _$GetCustomTimetableEventResponseToJson(
|
|
GetCustomTimetableEventResponse instance,
|
|
) => <String, dynamic>{'headers': ?instance.headers, 'events': instance.events};
|