// GENERATED CODE - DO NOT MODIFY BY HAND part of 'logentry.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** LogEntry _$LogEntryFromJson(Map json) => LogEntry( time: DateTime.parse(json['time'] as String), uid: json['uid'] as String, ); Map _$LogEntryToJson(LogEntry instance) => { 'time': instance.time.toIso8601String(), 'uid': instance.uid, };