mirror of
https://github.com/bettercoding-dev/flutter-jwt-auth.git
synced 2025-08-06 17:28:17 +08:00
18 lines
577 B
Dart
18 lines
577 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'time_response.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$TimeResponseImpl _$$TimeResponseImplFromJson(Map<String, dynamic> json) =>
|
|
_$TimeResponseImpl(
|
|
time: DateTime.parse(json['time'] as String),
|
|
);
|
|
|
|
Map<String, dynamic> _$$TimeResponseImplToJson(_$TimeResponseImpl instance) =>
|
|
<String, dynamic>{
|
|
'time': instance.time.toIso8601String(),
|
|
};
|