0

I need to make targetEmail, username, password secure with the flutter_secure_storage package but I do not know how to do it.

class ContactBloc extends Bloc<ContactEvent, ContactState> {
  late final SmtpServer smtpServer;
  final String targetEmail = 'text1';
  final String username = 'text2';
  final String password = 'text3';

  ContactBloc() : super(ContactInitial()) {
Armagan GOK
  • 81
  • 1
  • 7
  • 2
    Take a look at the example for the package over here https://pub.dev/packages/flutter_secure_storage/example – Er1 Sep 07 '22 at 12:33

0 Answers0