Credential constructor

Credential({
  1. required String id,
  2. required String name,
  3. required String type,
  4. Map<String, dynamic>? data,
  5. DateTime? createdAt,
  6. DateTime? updatedAt,
})

Implementation

Credential({
  required this.id,
  required this.name,
  required this.type,
  this.data,
  this.createdAt,
  this.updatedAt,
});