6 lines
128 B
Dart
6 lines
128 B
Dart
class PrivateKeyAttributes {
|
|
final String key;
|
|
final String secretKey;
|
|
|
|
PrivateKeyAttributes(this.key, this.secretKey);
|
|
}
|