ApiKeysUpdate constructor

ApiKeysUpdate({
  1. String? userId,
  2. String? companyId,
  3. int? roleId,
  4. String? name,
  5. DateTime? expirationDateUtc,
})

Returns a new ApiKeysUpdate instance.

Implementation

ApiKeysUpdate({
  this.userId,
  this.companyId,
  this.roleId,
  this.name,
  this.expirationDateUtc,
});