mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-10 10:00:00 +00:00
20 lines
710 B
Dart
20 lines
710 B
Dart
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'recovery_token_status.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
RecoveryTokenStatus _$RecoveryTokenStatusFromJson(Map<String, dynamic> json) =>
|
||
|
RecoveryTokenStatus(
|
||
|
exists: json['exists'] as bool,
|
||
|
valid: json['valid'] as bool,
|
||
|
date:
|
||
|
json['date'] == null ? null : DateTime.parse(json['date'] as String),
|
||
|
expiration: json['expiration'] == null
|
||
|
? null
|
||
|
: DateTime.parse(json['expiration'] as String),
|
||
|
uses_left: json['uses_left'] as int?,
|
||
|
);
|