Input$InsertCalendarNotificationSettingsNotifInput.fromJson constructor

Input$InsertCalendarNotificationSettingsNotifInput.fromJson(
  1. Map<String, dynamic> data
)

Implementation

factory Input$InsertCalendarNotificationSettingsNotifInput.fromJson(
    Map<String, dynamic> data) {
  final result$data = <String, dynamic>{};
  final l$notifications = data['notifications'];
  result$data['notifications'] = (l$notifications as List<dynamic>)
      .map((e) => Input$InsertCalendarNotificationSettingsInput.fromJson(
          (e as Map<String, dynamic>)))
      .toList();
  return Input$InsertCalendarNotificationSettingsNotifInput._(result$data);
}