Приложение на флаторе, настройки

This commit is contained in:
Халимов Рустам
2026-05-13 17:21:37 +03:00
parent 89e325556c
commit e8161d23d4
119 changed files with 18469 additions and 0 deletions
@@ -0,0 +1,317 @@
// coverage:ignore-file
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
part of 'message.dart';
// **************************************************************************
// FreezedGenerator
// **************************************************************************
T _$identity<T>(T value) => value;
final _privateConstructorUsedError = UnsupportedError(
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');
/// @nodoc
mixin _$Message {
String get id => throw _privateConstructorUsedError;
String get chatId => throw _privateConstructorUsedError;
String get senderId => throw _privateConstructorUsedError;
String get content => throw _privateConstructorUsedError;
String get messageType =>
throw _privateConstructorUsedError; // 'text', 'image', 'video', 'audio', 'file'
DateTime? get createdAt => throw _privateConstructorUsedError;
DateTime? get updatedAt => throw _privateConstructorUsedError;
bool? get isRead => throw _privateConstructorUsedError;
Map<String, dynamic>? get media => throw _privateConstructorUsedError;
@JsonKey(ignore: true)
$MessageCopyWith<Message> get copyWith => throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $MessageCopyWith<$Res> {
factory $MessageCopyWith(Message value, $Res Function(Message) then) =
_$MessageCopyWithImpl<$Res, Message>;
@useResult
$Res call(
{String id,
String chatId,
String senderId,
String content,
String messageType,
DateTime? createdAt,
DateTime? updatedAt,
bool? isRead,
Map<String, dynamic>? media});
}
/// @nodoc
class _$MessageCopyWithImpl<$Res, $Val extends Message>
implements $MessageCopyWith<$Res> {
_$MessageCopyWithImpl(this._value, this._then);
// ignore: unused_field
final $Val _value;
// ignore: unused_field
final $Res Function($Val) _then;
@pragma('vm:prefer-inline')
@override
$Res call({
Object? id = null,
Object? chatId = null,
Object? senderId = null,
Object? content = null,
Object? messageType = null,
Object? createdAt = freezed,
Object? updatedAt = freezed,
Object? isRead = freezed,
Object? media = freezed,
}) {
return _then(_value.copyWith(
id: null == id
? _value.id
: id // ignore: cast_nullable_to_non_nullable
as String,
chatId: null == chatId
? _value.chatId
: chatId // ignore: cast_nullable_to_non_nullable
as String,
senderId: null == senderId
? _value.senderId
: senderId // ignore: cast_nullable_to_non_nullable
as String,
content: null == content
? _value.content
: content // ignore: cast_nullable_to_non_nullable
as String,
messageType: null == messageType
? _value.messageType
: messageType // ignore: cast_nullable_to_non_nullable
as String,
createdAt: freezed == createdAt
? _value.createdAt
: createdAt // ignore: cast_nullable_to_non_nullable
as DateTime?,
updatedAt: freezed == updatedAt
? _value.updatedAt
: updatedAt // ignore: cast_nullable_to_non_nullable
as DateTime?,
isRead: freezed == isRead
? _value.isRead
: isRead // ignore: cast_nullable_to_non_nullable
as bool?,
media: freezed == media
? _value.media
: media // ignore: cast_nullable_to_non_nullable
as Map<String, dynamic>?,
) as $Val);
}
}
/// @nodoc
abstract class _$$MessageImplCopyWith<$Res> implements $MessageCopyWith<$Res> {
factory _$$MessageImplCopyWith(
_$MessageImpl value, $Res Function(_$MessageImpl) then) =
__$$MessageImplCopyWithImpl<$Res>;
@override
@useResult
$Res call(
{String id,
String chatId,
String senderId,
String content,
String messageType,
DateTime? createdAt,
DateTime? updatedAt,
bool? isRead,
Map<String, dynamic>? media});
}
/// @nodoc
class __$$MessageImplCopyWithImpl<$Res>
extends _$MessageCopyWithImpl<$Res, _$MessageImpl>
implements _$$MessageImplCopyWith<$Res> {
__$$MessageImplCopyWithImpl(
_$MessageImpl _value, $Res Function(_$MessageImpl) _then)
: super(_value, _then);
@pragma('vm:prefer-inline')
@override
$Res call({
Object? id = null,
Object? chatId = null,
Object? senderId = null,
Object? content = null,
Object? messageType = null,
Object? createdAt = freezed,
Object? updatedAt = freezed,
Object? isRead = freezed,
Object? media = freezed,
}) {
return _then(_$MessageImpl(
id: null == id
? _value.id
: id // ignore: cast_nullable_to_non_nullable
as String,
chatId: null == chatId
? _value.chatId
: chatId // ignore: cast_nullable_to_non_nullable
as String,
senderId: null == senderId
? _value.senderId
: senderId // ignore: cast_nullable_to_non_nullable
as String,
content: null == content
? _value.content
: content // ignore: cast_nullable_to_non_nullable
as String,
messageType: null == messageType
? _value.messageType
: messageType // ignore: cast_nullable_to_non_nullable
as String,
createdAt: freezed == createdAt
? _value.createdAt
: createdAt // ignore: cast_nullable_to_non_nullable
as DateTime?,
updatedAt: freezed == updatedAt
? _value.updatedAt
: updatedAt // ignore: cast_nullable_to_non_nullable
as DateTime?,
isRead: freezed == isRead
? _value.isRead
: isRead // ignore: cast_nullable_to_non_nullable
as bool?,
media: freezed == media
? _value._media
: media // ignore: cast_nullable_to_non_nullable
as Map<String, dynamic>?,
));
}
}
/// @nodoc
class _$MessageImpl implements _Message {
const _$MessageImpl(
{required this.id,
required this.chatId,
required this.senderId,
required this.content,
required this.messageType,
this.createdAt,
this.updatedAt,
this.isRead,
final Map<String, dynamic>? media})
: _media = media;
@override
final String id;
@override
final String chatId;
@override
final String senderId;
@override
final String content;
@override
final String messageType;
// 'text', 'image', 'video', 'audio', 'file'
@override
final DateTime? createdAt;
@override
final DateTime? updatedAt;
@override
final bool? isRead;
final Map<String, dynamic>? _media;
@override
Map<String, dynamic>? get media {
final value = _media;
if (value == null) return null;
if (_media is EqualUnmodifiableMapView) return _media;
// ignore: implicit_dynamic_type
return EqualUnmodifiableMapView(value);
}
@override
String toString() {
return 'Message(id: $id, chatId: $chatId, senderId: $senderId, content: $content, messageType: $messageType, createdAt: $createdAt, updatedAt: $updatedAt, isRead: $isRead, media: $media)';
}
@override
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$MessageImpl &&
(identical(other.id, id) || other.id == id) &&
(identical(other.chatId, chatId) || other.chatId == chatId) &&
(identical(other.senderId, senderId) ||
other.senderId == senderId) &&
(identical(other.content, content) || other.content == content) &&
(identical(other.messageType, messageType) ||
other.messageType == messageType) &&
(identical(other.createdAt, createdAt) ||
other.createdAt == createdAt) &&
(identical(other.updatedAt, updatedAt) ||
other.updatedAt == updatedAt) &&
(identical(other.isRead, isRead) || other.isRead == isRead) &&
const DeepCollectionEquality().equals(other._media, _media));
}
@override
int get hashCode => Object.hash(
runtimeType,
id,
chatId,
senderId,
content,
messageType,
createdAt,
updatedAt,
isRead,
const DeepCollectionEquality().hash(_media));
@JsonKey(ignore: true)
@override
@pragma('vm:prefer-inline')
_$$MessageImplCopyWith<_$MessageImpl> get copyWith =>
__$$MessageImplCopyWithImpl<_$MessageImpl>(this, _$identity);
}
abstract class _Message implements Message {
const factory _Message(
{required final String id,
required final String chatId,
required final String senderId,
required final String content,
required final String messageType,
final DateTime? createdAt,
final DateTime? updatedAt,
final bool? isRead,
final Map<String, dynamic>? media}) = _$MessageImpl;
@override
String get id;
@override
String get chatId;
@override
String get senderId;
@override
String get content;
@override
String get messageType;
@override // 'text', 'image', 'video', 'audio', 'file'
DateTime? get createdAt;
@override
DateTime? get updatedAt;
@override
bool? get isRead;
@override
Map<String, dynamic>? get media;
@override
@JsonKey(ignore: true)
_$$MessageImplCopyWith<_$MessageImpl> get copyWith =>
throw _privateConstructorUsedError;
}