ManagedSecretInfo.fromJson constructor

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

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?,
);