mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-14 14:12:21 -06:00
WIP - Replaced get_it + injectable with Provider
This commit is contained in:
26
lib/features/login/model/authentication_information.g.dart
Normal file
26
lib/features/login/model/authentication_information.g.dart
Normal file
@@ -0,0 +1,26 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'authentication_information.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
AuthenticationInformation _$AuthenticationInformationFromJson(
|
||||
Map<String, dynamic> json) =>
|
||||
AuthenticationInformation(
|
||||
token: json['token'] as String?,
|
||||
serverUrl: json['serverUrl'] as String,
|
||||
clientCertificate: json['clientCertificate'] == null
|
||||
? null
|
||||
: ClientCertificate.fromJson(
|
||||
json['clientCertificate'] as Map<String, dynamic>),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$AuthenticationInformationToJson(
|
||||
AuthenticationInformation instance) =>
|
||||
<String, dynamic>{
|
||||
'token': instance.token,
|
||||
'serverUrl': instance.serverUrl,
|
||||
'clientCertificate': instance.clientCertificate,
|
||||
};
|
||||
Reference in New Issue
Block a user