private_key_attributes.dart 128 B

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