Secret constructor
Secret({
- required String id,
- required String projectId,
- String? ownerUserId,
- String? ownerServiceAccountId,
- String? createdByUserId,
- String? createdByServiceAccountId,
- required String type,
- required String name,
- required bool httpOnly,
- required Map<
String, dynamic> metadata, - required Map<
String, dynamic> annotations, - String? currentVersionId,
- String? valueBase64,
- required DateTime createdAt,
- required DateTime updatedAt,
Implementation
Secret({
required this.id,
required this.projectId,
this.ownerUserId,
this.ownerServiceAccountId,
this.createdByUserId,
this.createdByServiceAccountId,
required this.type,
required this.name,
required this.httpOnly,
required this.metadata,
required this.annotations,
this.currentVersionId,
this.valueBase64,
required this.createdAt,
required this.updatedAt,
});