EncryptionKeyEntry.fromJson constructor

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

Implementation

factory EncryptionKeyEntry.fromJson(Map<String, dynamic> json) =>
    EncryptionKeyEntry(
      json['index'] as int,
      json['key'] as String,
    );