v1InitImportPrivateKeyIntent.fromJson constructor

v1InitImportPrivateKeyIntent.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory v1InitImportPrivateKeyIntent.fromJson(Map<String, dynamic> json) {
  final _userId = json['userId'] as String;
  return v1InitImportPrivateKeyIntent(
    userId: _userId,
  );
}