repo_id stringlengths 21 168 | file_path stringlengths 36 210 | content stringlengths 1 9.98M | __index_level_0__ int64 0 0 |
|---|---|---|---|
mirrored_repositories/flutter-valotod/lib/features/armory/data/models/response | mirrored_repositories/flutter-valotod/lib/features/armory/data/models/response/agent/agent_detail_model.dart | import 'package:json_annotation/json_annotation.dart';
import 'package:valotod_app/features/armory/domain/entities/agent_detail_entity.dart';
part 'agent_detail_model.g.dart';
@JsonSerializable(
createToJson: false,
createFactory: true,
)
class AgentDetailModel extends AgentDetailEntity {
const AgentDetailModel... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/data/models/response | mirrored_repositories/flutter-valotod/lib/features/armory/data/models/response/agent/agent_model.g.dart | // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'agent_model.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
AgentModel _$AgentModelFromJson(Map<String, dynamic> json) => ... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/data/models/response | mirrored_repositories/flutter-valotod/lib/features/armory/data/models/response/agent/agent_model.dart | import 'package:json_annotation/json_annotation.dart';
import 'package:valotod_app/features/armory/domain/entities/agent_entity.dart';
part 'agent_model.g.dart';
@JsonSerializable(
createToJson: false,
createFactory: true,
)
class AgentModel extends AgentEntity {
const AgentModel({
required super.status,
... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/data/models/response | mirrored_repositories/flutter-valotod/lib/features/armory/data/models/response/agent/agent_detail_model.g.dart | // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'agent_detail_model.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
AgentDetailModel _$AgentDetailModelFromJson(Map<String,... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/data | mirrored_repositories/flutter-valotod/lib/features/armory/data/datasources/agent_remote_datasources.dart | import 'package:dio/dio.dart';
import 'package:valotod_app/core/constant/api_path.dart';
import 'package:valotod_app/features/armory/data/models/response/agent/agent_detail_model.dart';
import 'package:valotod_app/features/armory/data/models/response/agent/agent_model.dart';
import 'package:valotod_app/features/armory/... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/data | mirrored_repositories/flutter-valotod/lib/features/armory/data/datasources/weapon_remote_datasources.dart | import 'package:dio/dio.dart';
import 'package:valotod_app/core/constant/api_path.dart';
import 'package:valotod_app/features/armory/data/models/response/weapon/weapon_detail_model.dart';
import 'package:valotod_app/features/armory/data/models/response/weapon/weapon_model.dart';
import 'package:valotod_app/features/arm... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/data | mirrored_repositories/flutter-valotod/lib/features/armory/data/repositories/weapon_repository_impl.dart | import 'package:dartz/dartz.dart';
import 'package:dio/dio.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/armory/data/datasources/weapon_remote_datasources.dart';
import 'package:valotod_app/feature... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/data | mirrored_repositories/flutter-valotod/lib/features/armory/data/repositories/agent_repository_impl.dart | import 'package:dartz/dartz.dart';
import 'package:dio/dio.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/armory/data/datasources/agent_remote_datasources.dart';
import 'package:valotod_app/features... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets/armory_widget.dart | import 'package:flutter/material.dart';
import 'package:gap/gap.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'package:valotod_app/features/armory/presentation/widgets/armory_card_widget.dart';
class ArmoryWidget extends Statef... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets/armory_card_widget.dart | import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:valotod_app/core/router/routes.dart';
import 'package:valotod_app/features/armory/presentation/components/armory_card_component.dart';
class ArmoryCardWidget extends StatelessWidget {
const ArmoryCardWidget({super.key});
@overr... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets/weapon/weapon_list_widget.dart | import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'package:valotod_app/features/armory/domain/entities/weapon_entity.dart';
import 'package:valotod_app/features/armory/... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets/weapon/weapon_widget.dart | // ignore_for_file: public_member_api_docs, sort_constructors_first
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'package:valotod_app/features/a... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets/weapon/weapon_skin_widget.dart | import 'package:flutter/material.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/shared/widgets/valobackground_basic_widget.dart';
import 'package:valotod_app/features/armory/domain/entities/weapon_detail_entity.dart';
import 'package:valotod_app/features/armory/presentation... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets/weapon/weapon_detail_widget.dart | import 'package:flutter/widgets.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/shared/widgets/valobackground_basic_widget.dart';
import 'package:valotod_app/features/armory/presentation/content/weapon/weapon_content.dart';
im... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets/agent/agent_list_widget.dart | import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'package:valotod_app/features/armory/domain/entities/agent_entity.dart';
import 'package:valotod_app/features/armory/presentation/cubit/agent/agent_cubit.dart';
import 'package:v... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets/agent/agent_widget.dart | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'package:valotod_app/features/armory/presentation/cubit/agent/agent_cubit.dart';
import 'package:val... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/widgets/agent/agent_detail_widget.dart | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/shared/widgets/valobackground_basic_widget.dart';
import 'package:valotod_app/features/armory/presentation/content/agent/agent_content.dart';
imp... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/components/armory_card_component.dart | import 'package:flutter/material.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
class ArmoryCardComponent extends StatelessWidget {
const ArmoryCardComponent({
required this.imageAsset,
required this.title,
required this.onTap,
super.key,
});
final String imageAsset;
fi... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content/weapon/weapon_content.dart | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'package:valotod_app/features/armory/presentation/content/weapon/weapon_detail_content.dart';
import... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content/weapon/weapon_skin_content.dart | import 'package:flutter/material.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'package:valotod_app/features/armory/domain/entities/weapon_detail_entity.dart';
class WeaponSkinContent extends StatefulWidget {
const WeaponSkin... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content/weapon/weapon_stats_content.dart | import 'package:flutter/material.dart';
import 'package:percent_indicator/linear_percent_indicator.dart';
import 'package:valotod_app/core/shared/extensions/valo_percentformat.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'packa... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content/weapon/weapon_detail_content.dart | import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'package:gap/gap.dart';
import 'package:get/get.dart';
import 'package:valotod_app/core/shared/extensions/valo_capitalize.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:va... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content/agent/agent_content.dart | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'package:valotod_app/features/armory/presentation/content/agent/agent_detail_content.dart';
import '... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content/agent/agent_main_content.dart | // ignore_for_file: public_member_api_docs, sort_constructors_first
import 'package:flutter/material.dart';
import 'package:gap/gap.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'package:valotod_app/features/armory/domain/entit... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content/agent/agent_header_content.dart | import 'package:flutter/material.dart';
class AgentHeaderContent extends StatelessWidget {
const AgentHeaderContent({
required this.background,
required this.bgAgent,
super.key,
});
final String background;
final String bgAgent;
@override
Widget build(BuildContext context) {
return Stack(
... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/content/agent/agent_detail_content.dart | import 'package:flutter/material.dart';
import 'package:valotod_app/features/armory/presentation/content/agent/agent_header_content.dart';
import 'package:valotod_app/features/armory/presentation/content/agent/agent_main_content.dart';
import 'package:valotod_app/features/armory/presentation/cubit/agent/agent_cubit.da... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/cubit | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/cubit/weapon/weapon_cubit.dart | import 'package:bloc/bloc.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/armory/domain/entities/weapon_detail_entity.dart';
import 'package:valotod_app/features/armory/domain/entities/weapon_entity.dart';
import 'package:valotod_app/features/armory/domain/usecases/we... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/cubit | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/cubit/weapon/weapon_state.dart | part of 'weapon_cubit.dart';
abstract class WeaponState {}
final class WeaponInitial extends WeaponState {}
final class WeaponLoading extends WeaponState {}
final class WeaponSuccess extends WeaponState {
WeaponSuccess(this.result);
final WeaponEntity result;
}
final class WeaponDetailSuccess extends WeaponSt... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/cubit | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/cubit/agent/agent_state.dart | part of 'agent_cubit.dart';
abstract class AgentState {}
final class AgentInitial extends AgentState {}
final class AgentLoading extends AgentState {}
final class AgentSuccess extends AgentState {
AgentSuccess(this.result);
final AgentEntity result;
}
final class AgentDetailSuccess extends AgentState {
Agen... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation/cubit | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/cubit/agent/agent_cubit.dart | import 'package:bloc/bloc.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/armory/domain/entities/agent_detail_entity.dart';
import 'package:valotod_app/features/armory/domain/entities/agent_entity.dart';
import 'package:valotod_app/features/armory/domain/usecases/agen... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/screens/gear_screen.dart | import 'package:flutter/material.dart';
import 'package:valotod_app/core/shared/widgets/valobackground_basic_widget.dart';
class GearScreen extends StatefulWidget {
const GearScreen({super.key});
@override
State<GearScreen> createState() => _GearScreenState();
}
class _GearScreenState extends State<GearScreen>... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/screens/weapon_screen.dart | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/shared/widgets/valobackground_basic_widget.dart';
import 'package:valotod_app/features/armory/presentation/cubit/weapon/weapon_cubit.dart';
impor... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/screens/armory_screen.dart | import 'package:flutter/material.dart';
import 'package:valotod_app/core/shared/widgets/valobackground_basic_widget.dart';
import 'package:valotod_app/features/armory/presentation/widgets/armory_widget.dart';
class ArmoryScreen extends StatefulWidget {
const ArmoryScreen({super.key});
@override
State<ArmoryScre... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/presentation | mirrored_repositories/flutter-valotod/lib/features/armory/presentation/screens/agent_screen.dart | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/shared/widgets/valobackground_basic_widget.dart';
import 'package:valotod_app/features/armory/presentation/cubit/agent/agent_cubit.dart';
import ... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/domain | mirrored_repositories/flutter-valotod/lib/features/armory/domain/entities/agent_entity.dart | import 'package:equatable/equatable.dart';
class AgentEntity extends Equatable {
const AgentEntity({
required this.status,
required this.data,
});
final int status;
final List<AgentData> data;
@override
List<Object?> get props => [status, data];
}
class AgentData extends Equatable {
const Agent... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/domain | mirrored_repositories/flutter-valotod/lib/features/armory/domain/entities/weapon_entity.dart | import 'package:equatable/equatable.dart';
class WeaponEntity extends Equatable {
const WeaponEntity({
required this.status,
required this.data,
});
final int status;
final List<WeaponData> data;
@override
List<Object?> get props => [status, data];
}
class WeaponData extends Equatable {
const W... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/domain | mirrored_repositories/flutter-valotod/lib/features/armory/domain/entities/agent_detail_entity.dart | import 'package:equatable/equatable.dart';
class AgentDetailEntity extends Equatable {
const AgentDetailEntity({
required this.status,
required this.data,
});
final int status;
final AgentDetailData data;
@override
List<Object?> get props => [status, data];
}
class AgentDetailData extends Equatab... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/domain | mirrored_repositories/flutter-valotod/lib/features/armory/domain/entities/weapon_detail_entity.dart | import 'package:equatable/equatable.dart';
class WeaponDetailEntity extends Equatable {
const WeaponDetailEntity({
required this.status,
required this.data,
});
final int status;
final WeaponDetailData data;
@override
List<Object?> get props => [status, data];
}
class WeaponDetailData extends Equ... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/domain | mirrored_repositories/flutter-valotod/lib/features/armory/domain/repositories/agent_repository.dart | import 'package:dartz/dartz.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/armory/domain/entities/agent_detail_entity.dart';
import 'package:valotod_app/features/armory/domain/entities/agent_entity.... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/domain | mirrored_repositories/flutter-valotod/lib/features/armory/domain/repositories/weapon_repository.dart | import 'package:dartz/dartz.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/armory/domain/entities/weapon_detail_entity.dart';
import 'package:valotod_app/features/armory/domain/entities/weapon_entit... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/domain | mirrored_repositories/flutter-valotod/lib/features/armory/domain/usecases/weapon_detail_usecase.dart | import 'package:dartz/dartz.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/armory/domain/entities/weapon_detail_entity.dart';
import 'package:valotod_app/features/armory/domain/repositories/weapon_r... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/domain | mirrored_repositories/flutter-valotod/lib/features/armory/domain/usecases/agent_usecase.dart | import 'package:dartz/dartz.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/armory/domain/entities/agent_entity.dart';
import 'package:valotod_app/features/armory/domain/repositories/agent_repository... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/domain | mirrored_repositories/flutter-valotod/lib/features/armory/domain/usecases/weapon_usecase.dart | import 'package:dartz/dartz.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/armory/domain/entities/weapon_entity.dart';
import 'package:valotod_app/features/armory/domain/repositories/weapon_reposito... | 0 |
mirrored_repositories/flutter-valotod/lib/features/armory/domain | mirrored_repositories/flutter-valotod/lib/features/armory/domain/usecases/agent_detail_usecase.dart | import 'package:dartz/dartz.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/armory/domain/entities/agent_detail_entity.dart';
import 'package:valotod_app/features/armory/domain/repositories/agent_rep... | 0 |
mirrored_repositories/flutter-valotod/lib/features/bottom_navigation/presentation | mirrored_repositories/flutter-valotod/lib/features/bottom_navigation/presentation/screens/bottom_nav_screen.dart | import 'package:flutter/material.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/prefs/shared_preferences.dart';
import 'package:valotod_app/core/shared/widgets/valonavbar_widget.dart';
import 'package:valotod_app/features/armory/presentation/screens/armory_screen.dart';
imp... | 0 |
mirrored_repositories/flutter-valotod/lib/features/bundles/data/models | mirrored_repositories/flutter-valotod/lib/features/bundles/data/models/response/bundle_model.g.dart | // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'bundle_model.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
BundleModel _$BundleModelFromJson(Map<String, dynamic> json) ... | 0 |
mirrored_repositories/flutter-valotod/lib/features/bundles/data/models | mirrored_repositories/flutter-valotod/lib/features/bundles/data/models/response/bundle_model.dart | import 'package:json_annotation/json_annotation.dart';
import 'package:valotod_app/features/bundles/domain/entities/bundle_entity.dart';
part 'bundle_model.g.dart';
@JsonSerializable(
createToJson: false,
createFactory: true,
)
class BundleModel extends BundleEntity {
const BundleModel({
required super.stat... | 0 |
mirrored_repositories/flutter-valotod/lib/features/bundles/data | mirrored_repositories/flutter-valotod/lib/features/bundles/data/datasources/bundle_datasources.dart | import 'package:dio/dio.dart';
import 'package:valotod_app/core/constant/api_path.dart';
import 'package:valotod_app/features/bundles/data/models/response/bundle_model.dart';
import 'package:valotod_app/features/bundles/domain/entities/bundle_entity.dart';
abstract class BundleRemoteDatasource {
Future<BundleEntity>... | 0 |
mirrored_repositories/flutter-valotod/lib/features/bundles/data | mirrored_repositories/flutter-valotod/lib/features/bundles/data/repositories/bundle_repository_impl.dart | import 'package:dartz/dartz.dart';
import 'package:dio/dio.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/bundles/data/datasources/bundle_datasources.dart';
import 'package:valotod_app/features/bund... | 0 |
mirrored_repositories/flutter-valotod/lib/features/bundles/presentation | mirrored_repositories/flutter-valotod/lib/features/bundles/presentation/widgets/bundle_widget.dart | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'package:valotod_app/features/bundles/presentation/cubit/bundles_cubit.dart';
class BundleWidget ex... | 0 |
mirrored_repositories/flutter-valotod/lib/features/bundles/presentation | mirrored_repositories/flutter-valotod/lib/features/bundles/presentation/cubit/bundles_cubit.dart | import 'package:bloc/bloc.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/bundles/domain/entities/bundle_entity.dart';
import 'package:valotod_app/features/bundles/domain/usecases/bundle_usecase.dart';
part 'bundles_state.dart';
class BundlesCubit extends Cubit<Bund... | 0 |
mirrored_repositories/flutter-valotod/lib/features/bundles/presentation | mirrored_repositories/flutter-valotod/lib/features/bundles/presentation/cubit/bundles_state.dart | part of 'bundles_cubit.dart';
abstract class BundlesState {}
class BundlesInitial extends BundlesState {}
class BundleLoading extends BundlesState {}
class BundleSuccess extends BundlesState {
BundleSuccess(this.result);
final BundleEntity result;
}
class BundleFailures extends BundlesState {
BundleFailures... | 0 |
mirrored_repositories/flutter-valotod/lib/features/bundles/presentation | mirrored_repositories/flutter-valotod/lib/features/bundles/presentation/screens/bundle_screen.dart | import 'package:flutter/widgets.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/shared/widgets/valobackground_basic_widget.dart';
import 'package:valotod_app/features/bundles/presentation/cubit/bundles_cubit.dart';
import 'pac... | 0 |
mirrored_repositories/flutter-valotod/lib/features/bundles/domain | mirrored_repositories/flutter-valotod/lib/features/bundles/domain/entities/bundle_entity.dart | import 'package:equatable/equatable.dart';
class BundleEntity extends Equatable {
const BundleEntity({
required this.status,
required this.data,
});
final int status;
final List<BundleData> data;
@override
List<Object?> get props => [status, data];
}
class BundleData extends Equatable {
const B... | 0 |
mirrored_repositories/flutter-valotod/lib/features/bundles/domain | mirrored_repositories/flutter-valotod/lib/features/bundles/domain/repositories/bundle_repository.dart | import 'package:dartz/dartz.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/bundles/domain/entities/bundle_entity.dart';
abstract class BundleRepository {
Future<Either<Failure, BundleEntity>> get... | 0 |
mirrored_repositories/flutter-valotod/lib/features/bundles/domain | mirrored_repositories/flutter-valotod/lib/features/bundles/domain/usecases/bundle_usecase.dart | import 'package:dartz/dartz.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/bundles/domain/entities/bundle_entity.dart';
import 'package:valotod_app/features/bundles/domain/repositories/bundle_reposi... | 0 |
mirrored_repositories/flutter-valotod/lib/features/playercard/presentation | mirrored_repositories/flutter-valotod/lib/features/playercard/presentation/cubit/playercard_state.dart | part of 'playercard_cubit.dart';
abstract class PlayercardState extends Equatable {
const PlayercardState();
@override
List<Object> get props => [];
}
class PlayercardInitial extends PlayercardState {}
| 0 |
mirrored_repositories/flutter-valotod/lib/features/playercard/presentation | mirrored_repositories/flutter-valotod/lib/features/playercard/presentation/cubit/playercard_cubit.dart | import 'package:bloc/bloc.dart';
import 'package:equatable/equatable.dart';
part 'playercard_state.dart';
class PlayercardCubit extends Cubit<PlayercardState> {
PlayercardCubit() : super(PlayercardInitial());
}
| 0 |
mirrored_repositories/flutter-valotod/lib/features/playercard/domain | mirrored_repositories/flutter-valotod/lib/features/playercard/domain/entities/playercard_entity.dart | import 'package:equatable/equatable.dart';
class PlayerCardEntity extends Equatable {
const PlayerCardEntity({
required this.status,
required this.data,
});
final int status;
final List<PlayerCardData> data;
@override
List<Object?> get props => [status, data];
}
class PlayerCardData extends Equat... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/data/models | mirrored_repositories/flutter-valotod/lib/features/profile/data/models/response/profile_model.g.dart | // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'profile_model.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
ProfileModel _$ProfileModelFromJson(Map<String, dynamic> jso... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/data/models | mirrored_repositories/flutter-valotod/lib/features/profile/data/models/response/profile_model.dart | import 'package:json_annotation/json_annotation.dart';
import 'package:valotod_app/features/profile/domain/entities/profile_entity.dart';
part 'profile_model.g.dart';
@JsonSerializable(
createToJson: false,
createFactory: true,
)
class ProfileModel extends ProfileEntity {
const ProfileModel({
required super... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/data | mirrored_repositories/flutter-valotod/lib/features/profile/data/datasources/profile_remote_datasources.dart | import 'package:dio/dio.dart';
import 'package:valotod_app/core/constant/api_path.dart';
import 'package:valotod_app/core/constant/prefs_key.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/prefs/shared_preferences.dart';
import 'package:valotod_app/features/profile/data/mode... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/data | mirrored_repositories/flutter-valotod/lib/features/profile/data/repositories/profile_repository_impl.dart | import 'package:dartz/dartz.dart';
import 'package:dio/dio.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/profile/data/datasources/profile_remote_datasources.dart';
import 'package:valotod_app/featu... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/presentation | mirrored_repositories/flutter-valotod/lib/features/profile/presentation/contents/header_profile_content.dart | import 'package:avatar_glow/avatar_glow.dart';
import 'package:flutter/material.dart';
import 'package:valotod_app/core/shared/extensions/valo_capitalize.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
class HeaderProfileContent extends... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/presentation | mirrored_repositories/flutter-valotod/lib/features/profile/presentation/contents/detail_profile_content.dart | // ignore_for_file: public_member_api_docs, sort_constructors_first
import 'package:flutter/material.dart';
import 'package:gap/gap.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'package:valotod_app/features/profile/presentatio... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/presentation | mirrored_repositories/flutter-valotod/lib/features/profile/presentation/widgets/profile_widget.dart | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
import 'package:valotod_app/features/profile/presentation/contents/detail_profile_content.dart';
import 'pa... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/presentation | mirrored_repositories/flutter-valotod/lib/features/profile/presentation/widgets/personal_info_widget.dart | // ignore_for_file: public_member_api_docs, sort_constructors_first
import 'package:flutter/material.dart';
import 'package:gap/gap.dart';
import 'package:valotod_app/core/shared/extensions/valo_dateformat.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/presentation | mirrored_repositories/flutter-valotod/lib/features/profile/presentation/widgets/setting_profile_widget.dart | import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'package:get/get.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/prefs/shared_preferences.dart';
import 'package:valotod_app/core/router/routes.dart';
import 'pack... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/presentation | mirrored_repositories/flutter-valotod/lib/features/profile/presentation/cubit/profile_cubit.dart | import 'package:bloc/bloc.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/profile/domain/entities/profile_entity.dart';
import 'package:valotod_app/features/profile/domain/usecases/profile_usecase.dart';
part 'profile_state.dart';
class ProfileCubit extends Cubit<Pr... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/presentation | mirrored_repositories/flutter-valotod/lib/features/profile/presentation/cubit/profile_state.dart | part of 'profile_cubit.dart';
abstract class ProfileState {}
class ProfileInitial extends ProfileState {}
class ProfileLoading extends ProfileState {}
class ProfileSuccess extends ProfileState {
ProfileSuccess(this.result);
final ProfileEntity result;
}
class ProfileFailure extends ProfileState {
ProfileFai... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/presentation | mirrored_repositories/flutter-valotod/lib/features/profile/presentation/screens/profile_screen.dart | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/constant/prefs_key.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/prefs/shared_preferences.dart';
import 'package:valotod_app/core/shared/widgets/valoba... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/domain | mirrored_repositories/flutter-valotod/lib/features/profile/domain/entities/profile_entity.dart | import 'package:equatable/equatable.dart';
class ProfileEntity extends Equatable {
const ProfileEntity({
required this.id,
required this.username,
required this.email,
required this.isAdmin,
required this.fullname,
required this.imageProfile,
required this.updatedAt,
required this.cre... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/domain | mirrored_repositories/flutter-valotod/lib/features/profile/domain/repositories/profile_repository.dart | import 'package:dartz/dartz.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/profile/domain/entities/profile_entity.dart';
abstract class ProfileRepository {
Future<Either<Failure, ProfileEntity>> ... | 0 |
mirrored_repositories/flutter-valotod/lib/features/profile/domain | mirrored_repositories/flutter-valotod/lib/features/profile/domain/usecases/profile_usecase.dart | import 'package:dartz/dartz.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/profile/domain/entities/profile_entity.dart';
import 'package:valotod_app/features/profile/domain/repositories/profile_repo... | 0 |
mirrored_repositories/flutter-valotod/lib/features/chat/data/models | mirrored_repositories/flutter-valotod/lib/features/chat/data/models/response/chat_model.g.dart | // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'chat_model.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
ChatModel _$ChatModelFromJson(Map<String, dynamic> json) => Cha... | 0 |
mirrored_repositories/flutter-valotod/lib/features/chat/data/models | mirrored_repositories/flutter-valotod/lib/features/chat/data/models/response/chat_model.dart | import 'package:json_annotation/json_annotation.dart';
import 'package:valotod_app/features/chat/domain/entities/chat_entity.dart';
part 'chat_model.g.dart';
@JsonSerializable(
createToJson: false,
createFactory: true,
)
class ChatModel extends ChatEntity {
const ChatModel({
required super.id,
required ... | 0 |
mirrored_repositories/flutter-valotod/lib/features/chat/data | mirrored_repositories/flutter-valotod/lib/features/chat/data/datasources/chat_remote_datasources.dart | import 'package:dio/dio.dart';
import 'package:valotod_app/core/constant/api_path.dart';
import 'package:valotod_app/features/chat/data/models/response/chat_model.dart';
import 'package:valotod_app/features/chat/domain/entities/chat_entity.dart';
abstract class ChatRemoteDatasource {
Future<ChatEntity> getChats();
... | 0 |
mirrored_repositories/flutter-valotod/lib/features/chat/data | mirrored_repositories/flutter-valotod/lib/features/chat/data/repositories/chat_repository_impl.dart | import 'package:dartz/dartz.dart';
import 'package:dio/dio.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/features/chat/data/datasources/chat_remote_datasources.dart';
import 'package:valotod_app/features/chat/domain/entities/chat_entity.dart';
import 'package:va... | 0 |
mirrored_repositories/flutter-valotod/lib/features/chat/presentation | mirrored_repositories/flutter-valotod/lib/features/chat/presentation/widgets/chat_widget.dart | import 'package:flutter/material.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
import 'package:valotod_app/core/shared/style/typograph.dart';
class ChatWidget extends StatefulWidget {
const ChatWidget({super.key});
@override
State<ChatWidget> createState() => _ChatWidgetState();
}
class _... | 0 |
mirrored_repositories/flutter-valotod/lib/features/chat/presentation | mirrored_repositories/flutter-valotod/lib/features/chat/presentation/cubit/chat_cubit.dart | import 'package:bloc/bloc.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/chat/domain/entities/chat_entity.dart';
import 'package:valotod_app/features/chat/domain/usecases/chat_usecase.dart';
part 'chat_state.dart';
class ChatCubit extends Cubit<ChatState> {
ChatC... | 0 |
mirrored_repositories/flutter-valotod/lib/features/chat/presentation | mirrored_repositories/flutter-valotod/lib/features/chat/presentation/cubit/chat_state.dart | part of 'chat_cubit.dart';
abstract class ChatState {}
class ChatInitial extends ChatState {}
class ChatLoading extends ChatState {}
class ChatSuccess extends ChatState {
ChatSuccess(this.result);
final ChatEntity result;
}
class ChatFailure extends ChatState {
ChatFailure(this.msg);
final String msg;
}
| 0 |
mirrored_repositories/flutter-valotod/lib/features/chat/presentation | mirrored_repositories/flutter-valotod/lib/features/chat/presentation/screens/chat_screen.dart | import 'package:flutter/widgets.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/shared/widgets/valobackground_basic_widget.dart';
import 'package:valotod_app/features/chat/presentation/cubit/chat_cubit.dart';
import 'package:v... | 0 |
mirrored_repositories/flutter-valotod/lib/features/chat/domain | mirrored_repositories/flutter-valotod/lib/features/chat/domain/entities/chat_entity.dart | import 'package:equatable/equatable.dart';
class ChatEntity extends Equatable {
const ChatEntity({
required this.id,
required this.chatName,
required this.isGroupChat,
required this.users,
required this.createdAt,
required this.updatedAt,
required this.v,
this.latestMessage,
});
f... | 0 |
mirrored_repositories/flutter-valotod/lib/features/chat/domain | mirrored_repositories/flutter-valotod/lib/features/chat/domain/repositories/chat_repository.dart | import 'package:dartz/dartz.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/features/chat/domain/entities/chat_entity.dart';
abstract class ChatRepository {
Future<Either<Failure, ChatEntity>> getChats();
// Future<Either<Failure, RegisterEntity>> register(Re... | 0 |
mirrored_repositories/flutter-valotod/lib/features/chat/domain | mirrored_repositories/flutter-valotod/lib/features/chat/domain/usecases/chat_usecase.dart | import 'package:dartz/dartz.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/core/usecase/usecase.dart';
import 'package:valotod_app/features/chat/domain/entities/chat_entity.dart';
import 'package:valotod_app/features/chat/domain/repositories/chat_repository.dart'... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/data/models | mirrored_repositories/flutter-valotod/lib/features/auth/data/models/response/login_model.dart | import 'package:json_annotation/json_annotation.dart';
import 'package:valotod_app/features/auth/domain/entities/login_entity.dart';
part 'login_model.g.dart';
@JsonSerializable(createToJson: false)
class LoginModel extends LoginEntity {
const LoginModel({
required super.id,
required super.username,
req... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/data/models | mirrored_repositories/flutter-valotod/lib/features/auth/data/models/response/login_model.g.dart | // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'login_model.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
LoginModel _$LoginModelFromJson(Map<String, dynamic> json) => ... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/data/models | mirrored_repositories/flutter-valotod/lib/features/auth/data/models/response/register_model.dart | import 'package:json_annotation/json_annotation.dart';
import 'package:valotod_app/features/auth/domain/entities/register_entity.dart';
part 'register_model.g.dart';
@JsonSerializable(createToJson: false)
class RegisterModel extends RegisterEntity {
const RegisterModel({
required super.username,
required su... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/data/models | mirrored_repositories/flutter-valotod/lib/features/auth/data/models/response/register_model.g.dart | // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'register_model.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
RegisterModel _$RegisterModelFromJson(Map<String, dynamic> ... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/data/models | mirrored_repositories/flutter-valotod/lib/features/auth/data/models/request/register_body.g.dart | // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'register_body.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
Map<String, dynamic> _$RegisterBodyToJson(RegisterBody insta... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/data/models | mirrored_repositories/flutter-valotod/lib/features/auth/data/models/request/login_body.g.dart | // GENERATED CODE - DO NOT MODIFY BY HAND
part of 'login_body.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
Map<String, dynamic> _$LoginBodyToJson(LoginBody instance) => <... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/data/models | mirrored_repositories/flutter-valotod/lib/features/auth/data/models/request/register_body.dart | import 'package:json_annotation/json_annotation.dart';
part 'register_body.g.dart';
@JsonSerializable(createToJson: true, createFactory: false)
class RegisterBody {
RegisterBody({
required this.email,
required this.fullname,
required this.username,
required this.password,
});
String email;
Str... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/data/models | mirrored_repositories/flutter-valotod/lib/features/auth/data/models/request/login_body.dart | import 'package:json_annotation/json_annotation.dart';
part 'login_body.g.dart';
@JsonSerializable(createToJson: true, createFactory: false)
class LoginBody {
LoginBody({
required this.username,
required this.password,
});
String username;
String password;
Map<String, dynamic> toJson() => _$LoginBo... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/data | mirrored_repositories/flutter-valotod/lib/features/auth/data/datasources/auth_local_datasource.dart | import 'package:valotod_app/core/constant/prefs_key.dart';
import 'package:valotod_app/core/prefs/shared_preferences.dart';
abstract class AuthLocalDataSource {
Future<void> saveBearerToken(String token);
Future<void> saveName(String name);
Future<void> savePhotoProfile(String profile);
Future<void> saveUserId... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/data | mirrored_repositories/flutter-valotod/lib/features/auth/data/datasources/auth_remote_datasource.dart | import 'package:dio/dio.dart';
import 'package:valotod_app/core/constant/api_path.dart';
import 'package:valotod_app/features/auth/data/models/request/login_body.dart';
import 'package:valotod_app/features/auth/data/models/request/register_body.dart';
import 'package:valotod_app/features/auth/data/models/response/login... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/data | mirrored_repositories/flutter-valotod/lib/features/auth/data/repositories/auth_repository_impl.dart | import 'package:dartz/dartz.dart';
import 'package:dio/dio.dart';
import 'package:valotod_app/core/shared/models/error/failures.dart';
import 'package:valotod_app/features/auth/data/datasources/auth_local_datasource.dart';
import 'package:valotod_app/features/auth/data/datasources/auth_remote_datasource.dart';
import '... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/presentation | mirrored_repositories/flutter-valotod/lib/features/auth/presentation/widgets/login_form_widget.dart | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:gap/gap.dart';
import 'package:get/get.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/router/routes.dart';
import 'package:valotod_app/core/shared/style/palette.dart';
... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/presentation | mirrored_repositories/flutter-valotod/lib/features/auth/presentation/widgets/register_form_widget.dart | import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'package:gap/gap.dart';
import 'package:get/get.dart';
import 'package:valotod_app/core/di/injection.dart';
import 'package:valotod_app/core/router/routes.dart... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/presentation | mirrored_repositories/flutter-valotod/lib/features/auth/presentation/cubit/auth_cubit.dart | import 'package:bloc/bloc.dart';
import 'package:equatable/equatable.dart';
import 'package:valotod_app/features/auth/data/models/request/login_body.dart';
import 'package:valotod_app/features/auth/data/models/request/register_body.dart';
import 'package:valotod_app/features/auth/domain/entities/login_entity.dart';
imp... | 0 |
mirrored_repositories/flutter-valotod/lib/features/auth/presentation | mirrored_repositories/flutter-valotod/lib/features/auth/presentation/cubit/auth_state.dart | part of 'auth_cubit.dart';
abstract class AuthState extends Equatable {
const AuthState();
@override
List<Object> get props => [];
}
class AuthInitial extends AuthState {}
class AuthLoading extends AuthState {}
class AuthFailure extends AuthState {
const AuthFailure(this.message);
final String message;
... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.