- UserRemoteDataSource: 사용자 CRUD, 상태 변경, 비밀번호 변경, 중복 확인 API 구현 - UserService: DTO-Model 변환 로직 및 역할/전화번호 매핑 처리 - UserListController: ChangeNotifier 패턴 적용, 페이지네이션, 검색, 필터링 기능 추가 - UserFormController: API 연동, username 중복 확인 기능 추가 - user_form.dart: username/password 필드 추가 및 실시간 검증 - user_list_redesign.dart: Provider 패턴 적용, 무한 스크롤 구현 - equipment_out_form_controller.dart: 구문 오류 수정 - API 통합 진행률: 85% (사용자 관리 100% 완료)
1577 lines
50 KiB
Dart
1577 lines
50 KiB
Dart
// 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 'user_dto.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');
|
|
|
|
UserDto _$UserDtoFromJson(Map<String, dynamic> json) {
|
|
return _UserDto.fromJson(json);
|
|
}
|
|
|
|
/// @nodoc
|
|
mixin _$UserDto {
|
|
int get id => throw _privateConstructorUsedError;
|
|
String get username => throw _privateConstructorUsedError;
|
|
String get email => throw _privateConstructorUsedError;
|
|
String get name => throw _privateConstructorUsedError;
|
|
String? get phone => throw _privateConstructorUsedError;
|
|
String get role => throw _privateConstructorUsedError;
|
|
@JsonKey(name: 'company_id')
|
|
int? get companyId => throw _privateConstructorUsedError;
|
|
@JsonKey(name: 'branch_id')
|
|
int? get branchId => throw _privateConstructorUsedError;
|
|
@JsonKey(name: 'is_active')
|
|
bool get isActive => throw _privateConstructorUsedError;
|
|
@JsonKey(name: 'created_at')
|
|
DateTime get createdAt => throw _privateConstructorUsedError;
|
|
@JsonKey(name: 'updated_at')
|
|
DateTime get updatedAt => throw _privateConstructorUsedError;
|
|
|
|
/// Serializes this UserDto to a JSON map.
|
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
|
|
|
/// Create a copy of UserDto
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
$UserDtoCopyWith<UserDto> get copyWith => throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $UserDtoCopyWith<$Res> {
|
|
factory $UserDtoCopyWith(UserDto value, $Res Function(UserDto) then) =
|
|
_$UserDtoCopyWithImpl<$Res, UserDto>;
|
|
@useResult
|
|
$Res call(
|
|
{int id,
|
|
String username,
|
|
String email,
|
|
String name,
|
|
String? phone,
|
|
String role,
|
|
@JsonKey(name: 'company_id') int? companyId,
|
|
@JsonKey(name: 'branch_id') int? branchId,
|
|
@JsonKey(name: 'is_active') bool isActive,
|
|
@JsonKey(name: 'created_at') DateTime createdAt,
|
|
@JsonKey(name: 'updated_at') DateTime updatedAt});
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$UserDtoCopyWithImpl<$Res, $Val extends UserDto>
|
|
implements $UserDtoCopyWith<$Res> {
|
|
_$UserDtoCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of UserDto
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? id = null,
|
|
Object? username = null,
|
|
Object? email = null,
|
|
Object? name = null,
|
|
Object? phone = freezed,
|
|
Object? role = null,
|
|
Object? companyId = freezed,
|
|
Object? branchId = freezed,
|
|
Object? isActive = null,
|
|
Object? createdAt = null,
|
|
Object? updatedAt = null,
|
|
}) {
|
|
return _then(_value.copyWith(
|
|
id: null == id
|
|
? _value.id
|
|
: id // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
username: null == username
|
|
? _value.username
|
|
: username // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
email: null == email
|
|
? _value.email
|
|
: email // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
name: null == name
|
|
? _value.name
|
|
: name // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
phone: freezed == phone
|
|
? _value.phone
|
|
: phone // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
role: null == role
|
|
? _value.role
|
|
: role // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
companyId: freezed == companyId
|
|
? _value.companyId
|
|
: companyId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
branchId: freezed == branchId
|
|
? _value.branchId
|
|
: branchId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
isActive: null == isActive
|
|
? _value.isActive
|
|
: isActive // ignore: cast_nullable_to_non_nullable
|
|
as bool,
|
|
createdAt: null == createdAt
|
|
? _value.createdAt
|
|
: createdAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
updatedAt: null == updatedAt
|
|
? _value.updatedAt
|
|
: updatedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
) as $Val);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$UserDtoImplCopyWith<$Res> implements $UserDtoCopyWith<$Res> {
|
|
factory _$$UserDtoImplCopyWith(
|
|
_$UserDtoImpl value, $Res Function(_$UserDtoImpl) then) =
|
|
__$$UserDtoImplCopyWithImpl<$Res>;
|
|
@override
|
|
@useResult
|
|
$Res call(
|
|
{int id,
|
|
String username,
|
|
String email,
|
|
String name,
|
|
String? phone,
|
|
String role,
|
|
@JsonKey(name: 'company_id') int? companyId,
|
|
@JsonKey(name: 'branch_id') int? branchId,
|
|
@JsonKey(name: 'is_active') bool isActive,
|
|
@JsonKey(name: 'created_at') DateTime createdAt,
|
|
@JsonKey(name: 'updated_at') DateTime updatedAt});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$UserDtoImplCopyWithImpl<$Res>
|
|
extends _$UserDtoCopyWithImpl<$Res, _$UserDtoImpl>
|
|
implements _$$UserDtoImplCopyWith<$Res> {
|
|
__$$UserDtoImplCopyWithImpl(
|
|
_$UserDtoImpl _value, $Res Function(_$UserDtoImpl) _then)
|
|
: super(_value, _then);
|
|
|
|
/// Create a copy of UserDto
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? id = null,
|
|
Object? username = null,
|
|
Object? email = null,
|
|
Object? name = null,
|
|
Object? phone = freezed,
|
|
Object? role = null,
|
|
Object? companyId = freezed,
|
|
Object? branchId = freezed,
|
|
Object? isActive = null,
|
|
Object? createdAt = null,
|
|
Object? updatedAt = null,
|
|
}) {
|
|
return _then(_$UserDtoImpl(
|
|
id: null == id
|
|
? _value.id
|
|
: id // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
username: null == username
|
|
? _value.username
|
|
: username // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
email: null == email
|
|
? _value.email
|
|
: email // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
name: null == name
|
|
? _value.name
|
|
: name // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
phone: freezed == phone
|
|
? _value.phone
|
|
: phone // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
role: null == role
|
|
? _value.role
|
|
: role // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
companyId: freezed == companyId
|
|
? _value.companyId
|
|
: companyId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
branchId: freezed == branchId
|
|
? _value.branchId
|
|
: branchId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
isActive: null == isActive
|
|
? _value.isActive
|
|
: isActive // ignore: cast_nullable_to_non_nullable
|
|
as bool,
|
|
createdAt: null == createdAt
|
|
? _value.createdAt
|
|
: createdAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
updatedAt: null == updatedAt
|
|
? _value.updatedAt
|
|
: updatedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
));
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
@JsonSerializable()
|
|
class _$UserDtoImpl implements _UserDto {
|
|
const _$UserDtoImpl(
|
|
{required this.id,
|
|
required this.username,
|
|
required this.email,
|
|
required this.name,
|
|
this.phone,
|
|
required this.role,
|
|
@JsonKey(name: 'company_id') this.companyId,
|
|
@JsonKey(name: 'branch_id') this.branchId,
|
|
@JsonKey(name: 'is_active') required this.isActive,
|
|
@JsonKey(name: 'created_at') required this.createdAt,
|
|
@JsonKey(name: 'updated_at') required this.updatedAt});
|
|
|
|
factory _$UserDtoImpl.fromJson(Map<String, dynamic> json) =>
|
|
_$$UserDtoImplFromJson(json);
|
|
|
|
@override
|
|
final int id;
|
|
@override
|
|
final String username;
|
|
@override
|
|
final String email;
|
|
@override
|
|
final String name;
|
|
@override
|
|
final String? phone;
|
|
@override
|
|
final String role;
|
|
@override
|
|
@JsonKey(name: 'company_id')
|
|
final int? companyId;
|
|
@override
|
|
@JsonKey(name: 'branch_id')
|
|
final int? branchId;
|
|
@override
|
|
@JsonKey(name: 'is_active')
|
|
final bool isActive;
|
|
@override
|
|
@JsonKey(name: 'created_at')
|
|
final DateTime createdAt;
|
|
@override
|
|
@JsonKey(name: 'updated_at')
|
|
final DateTime updatedAt;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'UserDto(id: $id, username: $username, email: $email, name: $name, phone: $phone, role: $role, companyId: $companyId, branchId: $branchId, isActive: $isActive, createdAt: $createdAt, updatedAt: $updatedAt)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$UserDtoImpl &&
|
|
(identical(other.id, id) || other.id == id) &&
|
|
(identical(other.username, username) ||
|
|
other.username == username) &&
|
|
(identical(other.email, email) || other.email == email) &&
|
|
(identical(other.name, name) || other.name == name) &&
|
|
(identical(other.phone, phone) || other.phone == phone) &&
|
|
(identical(other.role, role) || other.role == role) &&
|
|
(identical(other.companyId, companyId) ||
|
|
other.companyId == companyId) &&
|
|
(identical(other.branchId, branchId) ||
|
|
other.branchId == branchId) &&
|
|
(identical(other.isActive, isActive) ||
|
|
other.isActive == isActive) &&
|
|
(identical(other.createdAt, createdAt) ||
|
|
other.createdAt == createdAt) &&
|
|
(identical(other.updatedAt, updatedAt) ||
|
|
other.updatedAt == updatedAt));
|
|
}
|
|
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
int get hashCode => Object.hash(runtimeType, id, username, email, name, phone,
|
|
role, companyId, branchId, isActive, createdAt, updatedAt);
|
|
|
|
/// Create a copy of UserDto
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$UserDtoImplCopyWith<_$UserDtoImpl> get copyWith =>
|
|
__$$UserDtoImplCopyWithImpl<_$UserDtoImpl>(this, _$identity);
|
|
|
|
@override
|
|
Map<String, dynamic> toJson() {
|
|
return _$$UserDtoImplToJson(
|
|
this,
|
|
);
|
|
}
|
|
}
|
|
|
|
abstract class _UserDto implements UserDto {
|
|
const factory _UserDto(
|
|
{required final int id,
|
|
required final String username,
|
|
required final String email,
|
|
required final String name,
|
|
final String? phone,
|
|
required final String role,
|
|
@JsonKey(name: 'company_id') final int? companyId,
|
|
@JsonKey(name: 'branch_id') final int? branchId,
|
|
@JsonKey(name: 'is_active') required final bool isActive,
|
|
@JsonKey(name: 'created_at') required final DateTime createdAt,
|
|
@JsonKey(name: 'updated_at') required final DateTime updatedAt}) =
|
|
_$UserDtoImpl;
|
|
|
|
factory _UserDto.fromJson(Map<String, dynamic> json) = _$UserDtoImpl.fromJson;
|
|
|
|
@override
|
|
int get id;
|
|
@override
|
|
String get username;
|
|
@override
|
|
String get email;
|
|
@override
|
|
String get name;
|
|
@override
|
|
String? get phone;
|
|
@override
|
|
String get role;
|
|
@override
|
|
@JsonKey(name: 'company_id')
|
|
int? get companyId;
|
|
@override
|
|
@JsonKey(name: 'branch_id')
|
|
int? get branchId;
|
|
@override
|
|
@JsonKey(name: 'is_active')
|
|
bool get isActive;
|
|
@override
|
|
@JsonKey(name: 'created_at')
|
|
DateTime get createdAt;
|
|
@override
|
|
@JsonKey(name: 'updated_at')
|
|
DateTime get updatedAt;
|
|
|
|
/// Create a copy of UserDto
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$UserDtoImplCopyWith<_$UserDtoImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
CreateUserRequest _$CreateUserRequestFromJson(Map<String, dynamic> json) {
|
|
return _CreateUserRequest.fromJson(json);
|
|
}
|
|
|
|
/// @nodoc
|
|
mixin _$CreateUserRequest {
|
|
String get username => throw _privateConstructorUsedError;
|
|
String get email => throw _privateConstructorUsedError;
|
|
String get password => throw _privateConstructorUsedError;
|
|
String get name => throw _privateConstructorUsedError;
|
|
String? get phone => throw _privateConstructorUsedError;
|
|
String get role => throw _privateConstructorUsedError;
|
|
@JsonKey(name: 'company_id')
|
|
int? get companyId => throw _privateConstructorUsedError;
|
|
@JsonKey(name: 'branch_id')
|
|
int? get branchId => throw _privateConstructorUsedError;
|
|
|
|
/// Serializes this CreateUserRequest to a JSON map.
|
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
|
|
|
/// Create a copy of CreateUserRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
$CreateUserRequestCopyWith<CreateUserRequest> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $CreateUserRequestCopyWith<$Res> {
|
|
factory $CreateUserRequestCopyWith(
|
|
CreateUserRequest value, $Res Function(CreateUserRequest) then) =
|
|
_$CreateUserRequestCopyWithImpl<$Res, CreateUserRequest>;
|
|
@useResult
|
|
$Res call(
|
|
{String username,
|
|
String email,
|
|
String password,
|
|
String name,
|
|
String? phone,
|
|
String role,
|
|
@JsonKey(name: 'company_id') int? companyId,
|
|
@JsonKey(name: 'branch_id') int? branchId});
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$CreateUserRequestCopyWithImpl<$Res, $Val extends CreateUserRequest>
|
|
implements $CreateUserRequestCopyWith<$Res> {
|
|
_$CreateUserRequestCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of CreateUserRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? username = null,
|
|
Object? email = null,
|
|
Object? password = null,
|
|
Object? name = null,
|
|
Object? phone = freezed,
|
|
Object? role = null,
|
|
Object? companyId = freezed,
|
|
Object? branchId = freezed,
|
|
}) {
|
|
return _then(_value.copyWith(
|
|
username: null == username
|
|
? _value.username
|
|
: username // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
email: null == email
|
|
? _value.email
|
|
: email // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
password: null == password
|
|
? _value.password
|
|
: password // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
name: null == name
|
|
? _value.name
|
|
: name // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
phone: freezed == phone
|
|
? _value.phone
|
|
: phone // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
role: null == role
|
|
? _value.role
|
|
: role // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
companyId: freezed == companyId
|
|
? _value.companyId
|
|
: companyId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
branchId: freezed == branchId
|
|
? _value.branchId
|
|
: branchId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
) as $Val);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$CreateUserRequestImplCopyWith<$Res>
|
|
implements $CreateUserRequestCopyWith<$Res> {
|
|
factory _$$CreateUserRequestImplCopyWith(_$CreateUserRequestImpl value,
|
|
$Res Function(_$CreateUserRequestImpl) then) =
|
|
__$$CreateUserRequestImplCopyWithImpl<$Res>;
|
|
@override
|
|
@useResult
|
|
$Res call(
|
|
{String username,
|
|
String email,
|
|
String password,
|
|
String name,
|
|
String? phone,
|
|
String role,
|
|
@JsonKey(name: 'company_id') int? companyId,
|
|
@JsonKey(name: 'branch_id') int? branchId});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$CreateUserRequestImplCopyWithImpl<$Res>
|
|
extends _$CreateUserRequestCopyWithImpl<$Res, _$CreateUserRequestImpl>
|
|
implements _$$CreateUserRequestImplCopyWith<$Res> {
|
|
__$$CreateUserRequestImplCopyWithImpl(_$CreateUserRequestImpl _value,
|
|
$Res Function(_$CreateUserRequestImpl) _then)
|
|
: super(_value, _then);
|
|
|
|
/// Create a copy of CreateUserRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? username = null,
|
|
Object? email = null,
|
|
Object? password = null,
|
|
Object? name = null,
|
|
Object? phone = freezed,
|
|
Object? role = null,
|
|
Object? companyId = freezed,
|
|
Object? branchId = freezed,
|
|
}) {
|
|
return _then(_$CreateUserRequestImpl(
|
|
username: null == username
|
|
? _value.username
|
|
: username // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
email: null == email
|
|
? _value.email
|
|
: email // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
password: null == password
|
|
? _value.password
|
|
: password // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
name: null == name
|
|
? _value.name
|
|
: name // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
phone: freezed == phone
|
|
? _value.phone
|
|
: phone // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
role: null == role
|
|
? _value.role
|
|
: role // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
companyId: freezed == companyId
|
|
? _value.companyId
|
|
: companyId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
branchId: freezed == branchId
|
|
? _value.branchId
|
|
: branchId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
));
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
@JsonSerializable()
|
|
class _$CreateUserRequestImpl implements _CreateUserRequest {
|
|
const _$CreateUserRequestImpl(
|
|
{required this.username,
|
|
required this.email,
|
|
required this.password,
|
|
required this.name,
|
|
this.phone,
|
|
required this.role,
|
|
@JsonKey(name: 'company_id') this.companyId,
|
|
@JsonKey(name: 'branch_id') this.branchId});
|
|
|
|
factory _$CreateUserRequestImpl.fromJson(Map<String, dynamic> json) =>
|
|
_$$CreateUserRequestImplFromJson(json);
|
|
|
|
@override
|
|
final String username;
|
|
@override
|
|
final String email;
|
|
@override
|
|
final String password;
|
|
@override
|
|
final String name;
|
|
@override
|
|
final String? phone;
|
|
@override
|
|
final String role;
|
|
@override
|
|
@JsonKey(name: 'company_id')
|
|
final int? companyId;
|
|
@override
|
|
@JsonKey(name: 'branch_id')
|
|
final int? branchId;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'CreateUserRequest(username: $username, email: $email, password: $password, name: $name, phone: $phone, role: $role, companyId: $companyId, branchId: $branchId)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$CreateUserRequestImpl &&
|
|
(identical(other.username, username) ||
|
|
other.username == username) &&
|
|
(identical(other.email, email) || other.email == email) &&
|
|
(identical(other.password, password) ||
|
|
other.password == password) &&
|
|
(identical(other.name, name) || other.name == name) &&
|
|
(identical(other.phone, phone) || other.phone == phone) &&
|
|
(identical(other.role, role) || other.role == role) &&
|
|
(identical(other.companyId, companyId) ||
|
|
other.companyId == companyId) &&
|
|
(identical(other.branchId, branchId) ||
|
|
other.branchId == branchId));
|
|
}
|
|
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
int get hashCode => Object.hash(runtimeType, username, email, password, name,
|
|
phone, role, companyId, branchId);
|
|
|
|
/// Create a copy of CreateUserRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$CreateUserRequestImplCopyWith<_$CreateUserRequestImpl> get copyWith =>
|
|
__$$CreateUserRequestImplCopyWithImpl<_$CreateUserRequestImpl>(
|
|
this, _$identity);
|
|
|
|
@override
|
|
Map<String, dynamic> toJson() {
|
|
return _$$CreateUserRequestImplToJson(
|
|
this,
|
|
);
|
|
}
|
|
}
|
|
|
|
abstract class _CreateUserRequest implements CreateUserRequest {
|
|
const factory _CreateUserRequest(
|
|
{required final String username,
|
|
required final String email,
|
|
required final String password,
|
|
required final String name,
|
|
final String? phone,
|
|
required final String role,
|
|
@JsonKey(name: 'company_id') final int? companyId,
|
|
@JsonKey(name: 'branch_id') final int? branchId}) =
|
|
_$CreateUserRequestImpl;
|
|
|
|
factory _CreateUserRequest.fromJson(Map<String, dynamic> json) =
|
|
_$CreateUserRequestImpl.fromJson;
|
|
|
|
@override
|
|
String get username;
|
|
@override
|
|
String get email;
|
|
@override
|
|
String get password;
|
|
@override
|
|
String get name;
|
|
@override
|
|
String? get phone;
|
|
@override
|
|
String get role;
|
|
@override
|
|
@JsonKey(name: 'company_id')
|
|
int? get companyId;
|
|
@override
|
|
@JsonKey(name: 'branch_id')
|
|
int? get branchId;
|
|
|
|
/// Create a copy of CreateUserRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$CreateUserRequestImplCopyWith<_$CreateUserRequestImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
UpdateUserRequest _$UpdateUserRequestFromJson(Map<String, dynamic> json) {
|
|
return _UpdateUserRequest.fromJson(json);
|
|
}
|
|
|
|
/// @nodoc
|
|
mixin _$UpdateUserRequest {
|
|
String? get name => throw _privateConstructorUsedError;
|
|
String? get email => throw _privateConstructorUsedError;
|
|
String? get password => throw _privateConstructorUsedError;
|
|
String? get phone => throw _privateConstructorUsedError;
|
|
String? get role => throw _privateConstructorUsedError;
|
|
@JsonKey(name: 'company_id')
|
|
int? get companyId => throw _privateConstructorUsedError;
|
|
@JsonKey(name: 'branch_id')
|
|
int? get branchId => throw _privateConstructorUsedError;
|
|
|
|
/// Serializes this UpdateUserRequest to a JSON map.
|
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
|
|
|
/// Create a copy of UpdateUserRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
$UpdateUserRequestCopyWith<UpdateUserRequest> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $UpdateUserRequestCopyWith<$Res> {
|
|
factory $UpdateUserRequestCopyWith(
|
|
UpdateUserRequest value, $Res Function(UpdateUserRequest) then) =
|
|
_$UpdateUserRequestCopyWithImpl<$Res, UpdateUserRequest>;
|
|
@useResult
|
|
$Res call(
|
|
{String? name,
|
|
String? email,
|
|
String? password,
|
|
String? phone,
|
|
String? role,
|
|
@JsonKey(name: 'company_id') int? companyId,
|
|
@JsonKey(name: 'branch_id') int? branchId});
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$UpdateUserRequestCopyWithImpl<$Res, $Val extends UpdateUserRequest>
|
|
implements $UpdateUserRequestCopyWith<$Res> {
|
|
_$UpdateUserRequestCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of UpdateUserRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? name = freezed,
|
|
Object? email = freezed,
|
|
Object? password = freezed,
|
|
Object? phone = freezed,
|
|
Object? role = freezed,
|
|
Object? companyId = freezed,
|
|
Object? branchId = freezed,
|
|
}) {
|
|
return _then(_value.copyWith(
|
|
name: freezed == name
|
|
? _value.name
|
|
: name // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
email: freezed == email
|
|
? _value.email
|
|
: email // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
password: freezed == password
|
|
? _value.password
|
|
: password // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
phone: freezed == phone
|
|
? _value.phone
|
|
: phone // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
role: freezed == role
|
|
? _value.role
|
|
: role // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
companyId: freezed == companyId
|
|
? _value.companyId
|
|
: companyId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
branchId: freezed == branchId
|
|
? _value.branchId
|
|
: branchId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
) as $Val);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$UpdateUserRequestImplCopyWith<$Res>
|
|
implements $UpdateUserRequestCopyWith<$Res> {
|
|
factory _$$UpdateUserRequestImplCopyWith(_$UpdateUserRequestImpl value,
|
|
$Res Function(_$UpdateUserRequestImpl) then) =
|
|
__$$UpdateUserRequestImplCopyWithImpl<$Res>;
|
|
@override
|
|
@useResult
|
|
$Res call(
|
|
{String? name,
|
|
String? email,
|
|
String? password,
|
|
String? phone,
|
|
String? role,
|
|
@JsonKey(name: 'company_id') int? companyId,
|
|
@JsonKey(name: 'branch_id') int? branchId});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$UpdateUserRequestImplCopyWithImpl<$Res>
|
|
extends _$UpdateUserRequestCopyWithImpl<$Res, _$UpdateUserRequestImpl>
|
|
implements _$$UpdateUserRequestImplCopyWith<$Res> {
|
|
__$$UpdateUserRequestImplCopyWithImpl(_$UpdateUserRequestImpl _value,
|
|
$Res Function(_$UpdateUserRequestImpl) _then)
|
|
: super(_value, _then);
|
|
|
|
/// Create a copy of UpdateUserRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? name = freezed,
|
|
Object? email = freezed,
|
|
Object? password = freezed,
|
|
Object? phone = freezed,
|
|
Object? role = freezed,
|
|
Object? companyId = freezed,
|
|
Object? branchId = freezed,
|
|
}) {
|
|
return _then(_$UpdateUserRequestImpl(
|
|
name: freezed == name
|
|
? _value.name
|
|
: name // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
email: freezed == email
|
|
? _value.email
|
|
: email // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
password: freezed == password
|
|
? _value.password
|
|
: password // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
phone: freezed == phone
|
|
? _value.phone
|
|
: phone // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
role: freezed == role
|
|
? _value.role
|
|
: role // ignore: cast_nullable_to_non_nullable
|
|
as String?,
|
|
companyId: freezed == companyId
|
|
? _value.companyId
|
|
: companyId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
branchId: freezed == branchId
|
|
? _value.branchId
|
|
: branchId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
));
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
@JsonSerializable()
|
|
class _$UpdateUserRequestImpl implements _UpdateUserRequest {
|
|
const _$UpdateUserRequestImpl(
|
|
{this.name,
|
|
this.email,
|
|
this.password,
|
|
this.phone,
|
|
this.role,
|
|
@JsonKey(name: 'company_id') this.companyId,
|
|
@JsonKey(name: 'branch_id') this.branchId});
|
|
|
|
factory _$UpdateUserRequestImpl.fromJson(Map<String, dynamic> json) =>
|
|
_$$UpdateUserRequestImplFromJson(json);
|
|
|
|
@override
|
|
final String? name;
|
|
@override
|
|
final String? email;
|
|
@override
|
|
final String? password;
|
|
@override
|
|
final String? phone;
|
|
@override
|
|
final String? role;
|
|
@override
|
|
@JsonKey(name: 'company_id')
|
|
final int? companyId;
|
|
@override
|
|
@JsonKey(name: 'branch_id')
|
|
final int? branchId;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'UpdateUserRequest(name: $name, email: $email, password: $password, phone: $phone, role: $role, companyId: $companyId, branchId: $branchId)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$UpdateUserRequestImpl &&
|
|
(identical(other.name, name) || other.name == name) &&
|
|
(identical(other.email, email) || other.email == email) &&
|
|
(identical(other.password, password) ||
|
|
other.password == password) &&
|
|
(identical(other.phone, phone) || other.phone == phone) &&
|
|
(identical(other.role, role) || other.role == role) &&
|
|
(identical(other.companyId, companyId) ||
|
|
other.companyId == companyId) &&
|
|
(identical(other.branchId, branchId) ||
|
|
other.branchId == branchId));
|
|
}
|
|
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
int get hashCode => Object.hash(
|
|
runtimeType, name, email, password, phone, role, companyId, branchId);
|
|
|
|
/// Create a copy of UpdateUserRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$UpdateUserRequestImplCopyWith<_$UpdateUserRequestImpl> get copyWith =>
|
|
__$$UpdateUserRequestImplCopyWithImpl<_$UpdateUserRequestImpl>(
|
|
this, _$identity);
|
|
|
|
@override
|
|
Map<String, dynamic> toJson() {
|
|
return _$$UpdateUserRequestImplToJson(
|
|
this,
|
|
);
|
|
}
|
|
}
|
|
|
|
abstract class _UpdateUserRequest implements UpdateUserRequest {
|
|
const factory _UpdateUserRequest(
|
|
{final String? name,
|
|
final String? email,
|
|
final String? password,
|
|
final String? phone,
|
|
final String? role,
|
|
@JsonKey(name: 'company_id') final int? companyId,
|
|
@JsonKey(name: 'branch_id') final int? branchId}) =
|
|
_$UpdateUserRequestImpl;
|
|
|
|
factory _UpdateUserRequest.fromJson(Map<String, dynamic> json) =
|
|
_$UpdateUserRequestImpl.fromJson;
|
|
|
|
@override
|
|
String? get name;
|
|
@override
|
|
String? get email;
|
|
@override
|
|
String? get password;
|
|
@override
|
|
String? get phone;
|
|
@override
|
|
String? get role;
|
|
@override
|
|
@JsonKey(name: 'company_id')
|
|
int? get companyId;
|
|
@override
|
|
@JsonKey(name: 'branch_id')
|
|
int? get branchId;
|
|
|
|
/// Create a copy of UpdateUserRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$UpdateUserRequestImplCopyWith<_$UpdateUserRequestImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
ChangeStatusRequest _$ChangeStatusRequestFromJson(Map<String, dynamic> json) {
|
|
return _ChangeStatusRequest.fromJson(json);
|
|
}
|
|
|
|
/// @nodoc
|
|
mixin _$ChangeStatusRequest {
|
|
@JsonKey(name: 'is_active')
|
|
bool get isActive => throw _privateConstructorUsedError;
|
|
|
|
/// Serializes this ChangeStatusRequest to a JSON map.
|
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
|
|
|
/// Create a copy of ChangeStatusRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
$ChangeStatusRequestCopyWith<ChangeStatusRequest> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $ChangeStatusRequestCopyWith<$Res> {
|
|
factory $ChangeStatusRequestCopyWith(
|
|
ChangeStatusRequest value, $Res Function(ChangeStatusRequest) then) =
|
|
_$ChangeStatusRequestCopyWithImpl<$Res, ChangeStatusRequest>;
|
|
@useResult
|
|
$Res call({@JsonKey(name: 'is_active') bool isActive});
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$ChangeStatusRequestCopyWithImpl<$Res, $Val extends ChangeStatusRequest>
|
|
implements $ChangeStatusRequestCopyWith<$Res> {
|
|
_$ChangeStatusRequestCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of ChangeStatusRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? isActive = null,
|
|
}) {
|
|
return _then(_value.copyWith(
|
|
isActive: null == isActive
|
|
? _value.isActive
|
|
: isActive // ignore: cast_nullable_to_non_nullable
|
|
as bool,
|
|
) as $Val);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$ChangeStatusRequestImplCopyWith<$Res>
|
|
implements $ChangeStatusRequestCopyWith<$Res> {
|
|
factory _$$ChangeStatusRequestImplCopyWith(_$ChangeStatusRequestImpl value,
|
|
$Res Function(_$ChangeStatusRequestImpl) then) =
|
|
__$$ChangeStatusRequestImplCopyWithImpl<$Res>;
|
|
@override
|
|
@useResult
|
|
$Res call({@JsonKey(name: 'is_active') bool isActive});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$ChangeStatusRequestImplCopyWithImpl<$Res>
|
|
extends _$ChangeStatusRequestCopyWithImpl<$Res, _$ChangeStatusRequestImpl>
|
|
implements _$$ChangeStatusRequestImplCopyWith<$Res> {
|
|
__$$ChangeStatusRequestImplCopyWithImpl(_$ChangeStatusRequestImpl _value,
|
|
$Res Function(_$ChangeStatusRequestImpl) _then)
|
|
: super(_value, _then);
|
|
|
|
/// Create a copy of ChangeStatusRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? isActive = null,
|
|
}) {
|
|
return _then(_$ChangeStatusRequestImpl(
|
|
isActive: null == isActive
|
|
? _value.isActive
|
|
: isActive // ignore: cast_nullable_to_non_nullable
|
|
as bool,
|
|
));
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
@JsonSerializable()
|
|
class _$ChangeStatusRequestImpl implements _ChangeStatusRequest {
|
|
const _$ChangeStatusRequestImpl(
|
|
{@JsonKey(name: 'is_active') required this.isActive});
|
|
|
|
factory _$ChangeStatusRequestImpl.fromJson(Map<String, dynamic> json) =>
|
|
_$$ChangeStatusRequestImplFromJson(json);
|
|
|
|
@override
|
|
@JsonKey(name: 'is_active')
|
|
final bool isActive;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'ChangeStatusRequest(isActive: $isActive)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$ChangeStatusRequestImpl &&
|
|
(identical(other.isActive, isActive) ||
|
|
other.isActive == isActive));
|
|
}
|
|
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
int get hashCode => Object.hash(runtimeType, isActive);
|
|
|
|
/// Create a copy of ChangeStatusRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$ChangeStatusRequestImplCopyWith<_$ChangeStatusRequestImpl> get copyWith =>
|
|
__$$ChangeStatusRequestImplCopyWithImpl<_$ChangeStatusRequestImpl>(
|
|
this, _$identity);
|
|
|
|
@override
|
|
Map<String, dynamic> toJson() {
|
|
return _$$ChangeStatusRequestImplToJson(
|
|
this,
|
|
);
|
|
}
|
|
}
|
|
|
|
abstract class _ChangeStatusRequest implements ChangeStatusRequest {
|
|
const factory _ChangeStatusRequest(
|
|
{@JsonKey(name: 'is_active') required final bool isActive}) =
|
|
_$ChangeStatusRequestImpl;
|
|
|
|
factory _ChangeStatusRequest.fromJson(Map<String, dynamic> json) =
|
|
_$ChangeStatusRequestImpl.fromJson;
|
|
|
|
@override
|
|
@JsonKey(name: 'is_active')
|
|
bool get isActive;
|
|
|
|
/// Create a copy of ChangeStatusRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$ChangeStatusRequestImplCopyWith<_$ChangeStatusRequestImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
ChangePasswordRequest _$ChangePasswordRequestFromJson(
|
|
Map<String, dynamic> json) {
|
|
return _ChangePasswordRequest.fromJson(json);
|
|
}
|
|
|
|
/// @nodoc
|
|
mixin _$ChangePasswordRequest {
|
|
@JsonKey(name: 'current_password')
|
|
String get currentPassword => throw _privateConstructorUsedError;
|
|
@JsonKey(name: 'new_password')
|
|
String get newPassword => throw _privateConstructorUsedError;
|
|
|
|
/// Serializes this ChangePasswordRequest to a JSON map.
|
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
|
|
|
/// Create a copy of ChangePasswordRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
$ChangePasswordRequestCopyWith<ChangePasswordRequest> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $ChangePasswordRequestCopyWith<$Res> {
|
|
factory $ChangePasswordRequestCopyWith(ChangePasswordRequest value,
|
|
$Res Function(ChangePasswordRequest) then) =
|
|
_$ChangePasswordRequestCopyWithImpl<$Res, ChangePasswordRequest>;
|
|
@useResult
|
|
$Res call(
|
|
{@JsonKey(name: 'current_password') String currentPassword,
|
|
@JsonKey(name: 'new_password') String newPassword});
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$ChangePasswordRequestCopyWithImpl<$Res,
|
|
$Val extends ChangePasswordRequest>
|
|
implements $ChangePasswordRequestCopyWith<$Res> {
|
|
_$ChangePasswordRequestCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of ChangePasswordRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? currentPassword = null,
|
|
Object? newPassword = null,
|
|
}) {
|
|
return _then(_value.copyWith(
|
|
currentPassword: null == currentPassword
|
|
? _value.currentPassword
|
|
: currentPassword // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
newPassword: null == newPassword
|
|
? _value.newPassword
|
|
: newPassword // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
) as $Val);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$ChangePasswordRequestImplCopyWith<$Res>
|
|
implements $ChangePasswordRequestCopyWith<$Res> {
|
|
factory _$$ChangePasswordRequestImplCopyWith(
|
|
_$ChangePasswordRequestImpl value,
|
|
$Res Function(_$ChangePasswordRequestImpl) then) =
|
|
__$$ChangePasswordRequestImplCopyWithImpl<$Res>;
|
|
@override
|
|
@useResult
|
|
$Res call(
|
|
{@JsonKey(name: 'current_password') String currentPassword,
|
|
@JsonKey(name: 'new_password') String newPassword});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$ChangePasswordRequestImplCopyWithImpl<$Res>
|
|
extends _$ChangePasswordRequestCopyWithImpl<$Res,
|
|
_$ChangePasswordRequestImpl>
|
|
implements _$$ChangePasswordRequestImplCopyWith<$Res> {
|
|
__$$ChangePasswordRequestImplCopyWithImpl(_$ChangePasswordRequestImpl _value,
|
|
$Res Function(_$ChangePasswordRequestImpl) _then)
|
|
: super(_value, _then);
|
|
|
|
/// Create a copy of ChangePasswordRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? currentPassword = null,
|
|
Object? newPassword = null,
|
|
}) {
|
|
return _then(_$ChangePasswordRequestImpl(
|
|
currentPassword: null == currentPassword
|
|
? _value.currentPassword
|
|
: currentPassword // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
newPassword: null == newPassword
|
|
? _value.newPassword
|
|
: newPassword // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
));
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
@JsonSerializable()
|
|
class _$ChangePasswordRequestImpl implements _ChangePasswordRequest {
|
|
const _$ChangePasswordRequestImpl(
|
|
{@JsonKey(name: 'current_password') required this.currentPassword,
|
|
@JsonKey(name: 'new_password') required this.newPassword});
|
|
|
|
factory _$ChangePasswordRequestImpl.fromJson(Map<String, dynamic> json) =>
|
|
_$$ChangePasswordRequestImplFromJson(json);
|
|
|
|
@override
|
|
@JsonKey(name: 'current_password')
|
|
final String currentPassword;
|
|
@override
|
|
@JsonKey(name: 'new_password')
|
|
final String newPassword;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'ChangePasswordRequest(currentPassword: $currentPassword, newPassword: $newPassword)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$ChangePasswordRequestImpl &&
|
|
(identical(other.currentPassword, currentPassword) ||
|
|
other.currentPassword == currentPassword) &&
|
|
(identical(other.newPassword, newPassword) ||
|
|
other.newPassword == newPassword));
|
|
}
|
|
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
int get hashCode => Object.hash(runtimeType, currentPassword, newPassword);
|
|
|
|
/// Create a copy of ChangePasswordRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$ChangePasswordRequestImplCopyWith<_$ChangePasswordRequestImpl>
|
|
get copyWith => __$$ChangePasswordRequestImplCopyWithImpl<
|
|
_$ChangePasswordRequestImpl>(this, _$identity);
|
|
|
|
@override
|
|
Map<String, dynamic> toJson() {
|
|
return _$$ChangePasswordRequestImplToJson(
|
|
this,
|
|
);
|
|
}
|
|
}
|
|
|
|
abstract class _ChangePasswordRequest implements ChangePasswordRequest {
|
|
const factory _ChangePasswordRequest(
|
|
{@JsonKey(name: 'current_password') required final String currentPassword,
|
|
@JsonKey(name: 'new_password')
|
|
required final String newPassword}) = _$ChangePasswordRequestImpl;
|
|
|
|
factory _ChangePasswordRequest.fromJson(Map<String, dynamic> json) =
|
|
_$ChangePasswordRequestImpl.fromJson;
|
|
|
|
@override
|
|
@JsonKey(name: 'current_password')
|
|
String get currentPassword;
|
|
@override
|
|
@JsonKey(name: 'new_password')
|
|
String get newPassword;
|
|
|
|
/// Create a copy of ChangePasswordRequest
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$ChangePasswordRequestImplCopyWith<_$ChangePasswordRequestImpl>
|
|
get copyWith => throw _privateConstructorUsedError;
|
|
}
|
|
|
|
UserListDto _$UserListDtoFromJson(Map<String, dynamic> json) {
|
|
return _UserListDto.fromJson(json);
|
|
}
|
|
|
|
/// @nodoc
|
|
mixin _$UserListDto {
|
|
List<UserDto> get users => throw _privateConstructorUsedError;
|
|
int get total => throw _privateConstructorUsedError;
|
|
int get page => throw _privateConstructorUsedError;
|
|
@JsonKey(name: 'per_page')
|
|
int get perPage => throw _privateConstructorUsedError;
|
|
@JsonKey(name: 'total_pages')
|
|
int get totalPages => throw _privateConstructorUsedError;
|
|
|
|
/// Serializes this UserListDto to a JSON map.
|
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
|
|
|
/// Create a copy of UserListDto
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
$UserListDtoCopyWith<UserListDto> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $UserListDtoCopyWith<$Res> {
|
|
factory $UserListDtoCopyWith(
|
|
UserListDto value, $Res Function(UserListDto) then) =
|
|
_$UserListDtoCopyWithImpl<$Res, UserListDto>;
|
|
@useResult
|
|
$Res call(
|
|
{List<UserDto> users,
|
|
int total,
|
|
int page,
|
|
@JsonKey(name: 'per_page') int perPage,
|
|
@JsonKey(name: 'total_pages') int totalPages});
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$UserListDtoCopyWithImpl<$Res, $Val extends UserListDto>
|
|
implements $UserListDtoCopyWith<$Res> {
|
|
_$UserListDtoCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of UserListDto
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? users = null,
|
|
Object? total = null,
|
|
Object? page = null,
|
|
Object? perPage = null,
|
|
Object? totalPages = null,
|
|
}) {
|
|
return _then(_value.copyWith(
|
|
users: null == users
|
|
? _value.users
|
|
: users // ignore: cast_nullable_to_non_nullable
|
|
as List<UserDto>,
|
|
total: null == total
|
|
? _value.total
|
|
: total // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
page: null == page
|
|
? _value.page
|
|
: page // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
perPage: null == perPage
|
|
? _value.perPage
|
|
: perPage // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
totalPages: null == totalPages
|
|
? _value.totalPages
|
|
: totalPages // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
) as $Val);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$UserListDtoImplCopyWith<$Res>
|
|
implements $UserListDtoCopyWith<$Res> {
|
|
factory _$$UserListDtoImplCopyWith(
|
|
_$UserListDtoImpl value, $Res Function(_$UserListDtoImpl) then) =
|
|
__$$UserListDtoImplCopyWithImpl<$Res>;
|
|
@override
|
|
@useResult
|
|
$Res call(
|
|
{List<UserDto> users,
|
|
int total,
|
|
int page,
|
|
@JsonKey(name: 'per_page') int perPage,
|
|
@JsonKey(name: 'total_pages') int totalPages});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$UserListDtoImplCopyWithImpl<$Res>
|
|
extends _$UserListDtoCopyWithImpl<$Res, _$UserListDtoImpl>
|
|
implements _$$UserListDtoImplCopyWith<$Res> {
|
|
__$$UserListDtoImplCopyWithImpl(
|
|
_$UserListDtoImpl _value, $Res Function(_$UserListDtoImpl) _then)
|
|
: super(_value, _then);
|
|
|
|
/// Create a copy of UserListDto
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? users = null,
|
|
Object? total = null,
|
|
Object? page = null,
|
|
Object? perPage = null,
|
|
Object? totalPages = null,
|
|
}) {
|
|
return _then(_$UserListDtoImpl(
|
|
users: null == users
|
|
? _value._users
|
|
: users // ignore: cast_nullable_to_non_nullable
|
|
as List<UserDto>,
|
|
total: null == total
|
|
? _value.total
|
|
: total // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
page: null == page
|
|
? _value.page
|
|
: page // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
perPage: null == perPage
|
|
? _value.perPage
|
|
: perPage // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
totalPages: null == totalPages
|
|
? _value.totalPages
|
|
: totalPages // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
));
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
@JsonSerializable()
|
|
class _$UserListDtoImpl implements _UserListDto {
|
|
const _$UserListDtoImpl(
|
|
{required final List<UserDto> users,
|
|
required this.total,
|
|
required this.page,
|
|
@JsonKey(name: 'per_page') required this.perPage,
|
|
@JsonKey(name: 'total_pages') required this.totalPages})
|
|
: _users = users;
|
|
|
|
factory _$UserListDtoImpl.fromJson(Map<String, dynamic> json) =>
|
|
_$$UserListDtoImplFromJson(json);
|
|
|
|
final List<UserDto> _users;
|
|
@override
|
|
List<UserDto> get users {
|
|
if (_users is EqualUnmodifiableListView) return _users;
|
|
// ignore: implicit_dynamic_type
|
|
return EqualUnmodifiableListView(_users);
|
|
}
|
|
|
|
@override
|
|
final int total;
|
|
@override
|
|
final int page;
|
|
@override
|
|
@JsonKey(name: 'per_page')
|
|
final int perPage;
|
|
@override
|
|
@JsonKey(name: 'total_pages')
|
|
final int totalPages;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'UserListDto(users: $users, total: $total, page: $page, perPage: $perPage, totalPages: $totalPages)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$UserListDtoImpl &&
|
|
const DeepCollectionEquality().equals(other._users, _users) &&
|
|
(identical(other.total, total) || other.total == total) &&
|
|
(identical(other.page, page) || other.page == page) &&
|
|
(identical(other.perPage, perPage) || other.perPage == perPage) &&
|
|
(identical(other.totalPages, totalPages) ||
|
|
other.totalPages == totalPages));
|
|
}
|
|
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
int get hashCode => Object.hash(
|
|
runtimeType,
|
|
const DeepCollectionEquality().hash(_users),
|
|
total,
|
|
page,
|
|
perPage,
|
|
totalPages);
|
|
|
|
/// Create a copy of UserListDto
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$UserListDtoImplCopyWith<_$UserListDtoImpl> get copyWith =>
|
|
__$$UserListDtoImplCopyWithImpl<_$UserListDtoImpl>(this, _$identity);
|
|
|
|
@override
|
|
Map<String, dynamic> toJson() {
|
|
return _$$UserListDtoImplToJson(
|
|
this,
|
|
);
|
|
}
|
|
}
|
|
|
|
abstract class _UserListDto implements UserListDto {
|
|
const factory _UserListDto(
|
|
{required final List<UserDto> users,
|
|
required final int total,
|
|
required final int page,
|
|
@JsonKey(name: 'per_page') required final int perPage,
|
|
@JsonKey(name: 'total_pages') required final int totalPages}) =
|
|
_$UserListDtoImpl;
|
|
|
|
factory _UserListDto.fromJson(Map<String, dynamic> json) =
|
|
_$UserListDtoImpl.fromJson;
|
|
|
|
@override
|
|
List<UserDto> get users;
|
|
@override
|
|
int get total;
|
|
@override
|
|
int get page;
|
|
@override
|
|
@JsonKey(name: 'per_page')
|
|
int get perPage;
|
|
@override
|
|
@JsonKey(name: 'total_pages')
|
|
int get totalPages;
|
|
|
|
/// Create a copy of UserListDto
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$UserListDtoImplCopyWith<_$UserListDtoImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|