Key constructor

Key({
  1. required String $id,
  2. required String $createdAt,
  3. required String $updatedAt,
  4. required String name,
  5. required String secret,
  6. required int expire,
  7. required List<String> platforms,
  8. required String userId,
  9. required String teamId,
  10. required String key,
  11. required int registration,
})

Implementation

Key({
  required this.$id,
  required this.$createdAt,
  required this.$updatedAt,
  required this.name,
  required this.secret,
  required this.expire,
  required this.platforms,
  required this.userId,
  required this.teamId,
  required this.key,
  required this.registration,
});