factory Secret.fromJson(Map<String, dynamic> json) { return Secret( name: json['name'] as String, valueFrom: json['valueFrom'] as String, ); }