SecretValue.fromJson constructor

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

Implementation

factory SecretValue.fromJson(Map<String, dynamic> json) {
  return SecretValue(identity: json['identity'] as String, id: json['id'] as String);
}