Platform constructor

Platform({
  1. required String $id,
  2. required String $createdAt,
  3. required String $updatedAt,
  4. required String name,
  5. required String type,
  6. required String key,
  7. required String store,
  8. required String hostname,
  9. required String httpUser,
  10. required String httpPass,
})

Implementation

Platform({
  required this.$id,
  required this.$createdAt,
  required this.$updatedAt,
  required this.name,
  required this.type,
  required this.key,
  required this.store,
  required this.hostname,
  required this.httpUser,
  required this.httpPass,
});