MsSmoothEncryptionSettings.fromJson constructor
Implementation
factory MsSmoothEncryptionSettings.fromJson(Map<String, dynamic> json) {
return MsSmoothEncryptionSettings(
spekeKeyProvider: json['spekeKeyProvider'] != null
? SpekeKeyProvider.fromJson(
json['spekeKeyProvider'] as Map<String, dynamic>)
: null,
);
}