ManagedSecretInfo.fromJson constructor
Implementation
factory ManagedSecretInfo.fromJson(Map<String, dynamic> json) => ManagedSecretInfo(
id: json['id'] as String,
type: json['type'] as String,
name: json['name'] as String,
delegatedTo: json['delegated_to'] as String? ?? json['delegatedTo'] as String?,
);