This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:cpf_cnpj_validator/cnpj_validator.dart'; | |
import 'package:cpf_cnpj_validator/cpf_validator.dart'; | |
import 'package:data_connection_checker/data_connection_checker.dart'; | |
import 'package:dio/dio.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_keyboard_visibility/flutter_keyboard_visibility.dart'; | |
import 'package:flutter_modular/flutter_modular.dart'; | |
import 'package:get/get.dart'; | |
import '../../../clean/ui/widgets/molecules/error_alert_body/error_alert_body.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter_modular/flutter_modular.dart'; | |
import 'package:pandapay_flutter/app/core/utils/constants/storage_keys.dart'; | |
import 'package:pandapay_flutter/app/infrastructure/data/datasources/local/secure_local_datasource.dart'; | |
import 'package:pandapay_flutter/app/models/user_api_model/crypto_address_model/crypto_address_model.dart'; | |
import '../../features/auth/data/models/user/child_models/kyc_model.dart'; | |
import '../../features/auth/data/models/user/child_models/missing_data_model.dart'; | |
import 'banners_model/banner_model.dart'; | |
import 'services_model/services_model.dart'; | |
import 'user_model/user_model.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AnuncioModel { | |
String id; | |
String classPdtId; | |
String pdtId; | |
String content; | |
String stock; | |
String price; | |
String isOrganic; | |
String addrFull; | |
String addrState; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:convert'; | |
import 'package:facil_alimentos/api/services_api/cache_management.dart'; | |
import 'package:facil_alimentos/models/anuncios_model.dart'; | |
import 'package:http/http.dart' as http; | |
class GetAnunciosApi { | |
int qtdPatronizedPref = 0; | |
int qtdPatronized = 0; | |
int qtdNotPatronized = 0; | |
int qtdLastPosts = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:firebase_auth/firebase_auth.dart'; | |
class SMSFunctions { | |
static Future<void> sendCodeToPhoneNumber( | |
String phoneNo, | |
Function onSuccess, | |
Function onFailed, | |
Function onRetrival, | |
) async { |