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,
  7. bool? isResolvable,
  8. bool? isGlobal,
  9. bool? isPartialData,
})

Implementation

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