SecretRef.fromJson constructor

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

Implementation

factory SecretRef.fromJson(Map<String, dynamic> json) {
  return SecretRef(
    secret: json['secret'] ?? '',
    version: json['version'] ?? '',
  );
}