StaticKeyProvider.fromJson constructor
Implementation
factory StaticKeyProvider.fromJson(Map<String, dynamic> json) {
return StaticKeyProvider(
keyFormat: json['keyFormat'] as String?,
keyFormatVersions: json['keyFormatVersions'] as String?,
staticKeyValue: json['staticKeyValue'] as String?,
url: json['url'] as String?,
);
}