FeaturesConfig constructor

FeaturesConfig({
  1. @Deprecated('Please use AppKitSocialOption.Email in `socials` list to enable Email Login') bool email = true,
  2. List<AppKitSocialOption> socials = const [],
  3. bool showMainWallets = true,
})

Implementation

FeaturesConfig({
  @Deprecated(
    'Please use AppKitSocialOption.Email in `socials` list to enable Email Login',
  )
  this.email = true,
  this.socials = const [],
  this.showMainWallets = true,
});