Credential constructor

Credential({
  1. int? id,
  2. int? brandId,
  3. int? userId,
  4. bool? isConnected,
  5. DateTime? lastSync,
})

Implementation

Credential({
  this.id,
  this.brandId,
  this.userId,
  this.isConnected,
  this.lastSync,
});