- Bump version to `0.1.7+45` and update SDK constraint to `>=3.8.0 <4.0.0`. - Update numerous dependencies
19 lines
709 B
Dart
19 lines
709 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'updateCustomTimetableEventParams.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
UpdateCustomTimetableEventParams _$UpdateCustomTimetableEventParamsFromJson(
|
|
Map<String, dynamic> json,
|
|
) => UpdateCustomTimetableEventParams(
|
|
json['id'] as String,
|
|
CustomTimetableEvent.fromJson(json['event'] as Map<String, dynamic>),
|
|
);
|
|
|
|
Map<String, dynamic> _$UpdateCustomTimetableEventParamsToJson(
|
|
UpdateCustomTimetableEventParams instance,
|
|
) => <String, dynamic>{'id': instance.id, 'event': instance.event.toJson()};
|