AuthorizedKey.fromJson constructor

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

Implementation

factory AuthorizedKey.fromJson(Map<String, dynamic> json) => AuthorizedKey(
    publicKey: json['publicKey'],
    encryptedSecretKey: json['encryptedSecretKey']);