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