private_key_attributes.dart 174 B

1234567
  1. class PrivateKeyAttributes {
  2. final String key;
  3. final String recoveryKey;
  4. final String secretKey;
  5. PrivateKeyAttributes(this.key, this.recoveryKey, this.secretKey);
  6. }