7 lines
174 B
Dart
7 lines
174 B
Dart
class PrivateKeyAttributes {
|
|
final String key;
|
|
final String recoveryKey;
|
|
final String secretKey;
|
|
|
|
PrivateKeyAttributes(this.key, this.recoveryKey, this.secretKey);
|
|
}
|