ApiUserModel constructor

const ApiUserModel({
  1. required String name,
  2. required String apiKey,
  3. required DateTime createdAt,
  4. required Duration? expireAfter,
  5. required String hash,
  6. required bool active,
  7. required String secretKeyEncrypted,
})

Implementation

const ApiUserModel({
  required this.name,
  required this.apiKey,
  required this.createdAt,
  required this.expireAfter,
  required this.hash,
  required this.active,
  required this.secretKeyEncrypted,
});