KeyStoreModel constructor

KeyStoreModel({
  1. String? publicKey,
  2. String? secretKey,
  3. required String publicKeyHash,
  4. dynamic seed,
  5. String? secret,
  6. String? email,
  7. String? password,
})

Implementation

KeyStoreModel({
  this.publicKey,
  this.secretKey,
  required this.publicKeyHash,
  this.seed,
  this.secret,
  this.email,
  this.password,
});