Настройки, авторизация

This commit is contained in:
Халимов Рустам
2026-05-14 12:06:34 +03:00
parent e8161d23d4
commit ccffc5a53c
41 changed files with 2556 additions and 1375 deletions
@@ -0,0 +1,25 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'auth_response.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
_$AuthResponseImpl _$$AuthResponseImplFromJson(Map<String, dynamic> json) =>
_$AuthResponseImpl(
accessToken: json['accessToken'] as String,
refreshToken: json['refreshToken'] as String,
userId: json['userId'] as String,
username: json['username'] as String,
displayName: json['displayName'] as String,
);
Map<String, dynamic> _$$AuthResponseImplToJson(_$AuthResponseImpl instance) =>
<String, dynamic>{
'accessToken': instance.accessToken,
'refreshToken': instance.refreshToken,
'userId': instance.userId,
'username': instance.username,
'displayName': instance.displayName,
};