ValidationOptions constructor

const ValidationOptions({
  1. List<String>? network,
  2. bool testnet = false,
  3. bool enabledLegacy = true,
  4. bool emojiAllowed = true,
  5. List<String> nsDomains = const [],
})

Creates a new ValidationOptions instance.

All parameters are optional and have default values:

  • nsDomains: empty list

Implementation

const ValidationOptions({
  this.network,
  this.testnet = false,
  this.enabledLegacy = true,
  this.emojiAllowed = true,
  this.nsDomains = const [],
});